Compare commits
2 commits
859e39875a
...
6c5f19b84c
Author | SHA1 | Date | |
---|---|---|---|
6c5f19b84c | |||
168794a797 |
2 changed files with 2 additions and 2 deletions
Binary file not shown.
Before Width: | Height: | Size: 155 B After Width: | Height: | Size: 155 B |
|
@ -444,7 +444,7 @@ impl Editor {
|
|||
}
|
||||
|
||||
pub fn draw(&mut self, d: &mut RaylibDrawHandle, textures: &Textures) {
|
||||
d.clear_background(Color::new(64, 64, 64, 255));
|
||||
d.clear_background(gray(48));
|
||||
|
||||
if self.draw_overlay && self.zoom >= 1. {
|
||||
let tile_size = (TILE_TEXTURE_SIZE * self.zoom) as f32;
|
||||
|
@ -868,7 +868,7 @@ impl Editor {
|
|||
(Color::RED, Color::DARKRED)
|
||||
}
|
||||
} else {
|
||||
(Color::DARKGRAY, Color::DIMGRAY)
|
||||
(BG_LIGHT, BG_MEDIUM)
|
||||
};
|
||||
|
||||
d.draw_rectangle(x, y, output_cell_width - 5, 30, top_color);
|
||||
|
|
Loading…
Add table
Reference in a new issue