Skip to content

Commit

Permalink
change default window size
Browse files Browse the repository at this point in the history
  • Loading branch information
djkato committed Apr 24, 2023
1 parent cdeb14a commit a00d2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fn create_ui(
) -> Result<(), eframe::Error> {
//egui
let options = NativeOptions {
initial_window_size: Some(egui::vec2(320.0, 240.0)),
initial_window_size: Some(egui::vec2(320.0, 480.0)),
..Default::default()
};
let app = Box::new(IsaApp {
Expand Down

0 comments on commit a00d2a7

Please sign in to comment.