From 427be61dc78a38586ee4829c0b706d07d3d9cbf0 Mon Sep 17 00:00:00 2001 From: pml68 Date: Wed, 16 Apr 2025 20:08:04 +0200 Subject: feat: center the window by default --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index d58329a..c7e6314 100644 --- a/src/main.rs +++ b/src/main.rs @@ -64,6 +64,7 @@ fn main() -> Result<(), Box> { .theme(|state| state.theme.value().clone()) .subscription(App::subscription) .antialiasing(true) + .centered() .run()?; Ok(()) -- cgit v1.2.3