Compare commits

..

No commits in common. "6c5f19b84c9ddf1923b04ed66dd9055f27f31726" and "859e39875afabf08c27c09dbbb644fb24d020d6c" have entirely different histories.

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

View file

@ -444,7 +444,7 @@ impl Editor {
}
pub fn draw(&mut self, d: &mut RaylibDrawHandle, textures: &Textures) {
d.clear_background(gray(48));
d.clear_background(Color::new(64, 64, 64, 255));
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 {
(BG_LIGHT, BG_MEDIUM)
(Color::DARKGRAY, Color::DIMGRAY)
};
d.draw_rectangle(x, y, output_cell_width - 5, 30, top_color);