diff options
author | Joris | 2024-11-20 20:36:27 +0100 |
---|---|---|
committer | Joris | 2024-11-20 20:36:27 +0100 |
commit | 67da13d3cdadb6d613470c3089864d6cc6ac5ced (patch) | |
tree | 0cf660b32ed6c90efdaf9ca2c291a08d0b691f3e | |
parent | 0900f9d56f15f5a0eebba9e54b8bcf329e3fb12d (diff) |
Enlarge default sizemain
1920x1080 * 0.55
-rw-r--r-- | src/gui/app.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/app.rs b/src/gui/app.rs index ab3f9c0..5469e53 100644 --- a/src/gui/app.rs +++ b/src/gui/app.rs @@ -65,8 +65,8 @@ impl App { gtk::ApplicationWindow::builder() .application(app) .title("Calendrier") - .default_width(800) - .default_height(600) + .default_width(1056) + .default_height(594) .visible(true) .child(&calendar) .build(), |