modified: src/main.rs

This commit is contained in:
Michael Wain 2024-12-03 03:10:04 +02:00
parent 42b22e87f5
commit c01680f46f

View File

@ -17,7 +17,7 @@ impl AppDelegate for BasicApp {
fn did_finish_launching(&self) {
self.window.set_minimum_content_size(400., 400.);
self.window.set_title("Hello World!");
self.window.set_background_color(Color::rgb(0, 0,0));
self.window.set_background_color(Color::rgb(255, 0,0));
self.window.show();
}
}