summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-04-16 20:08:04 +0200
committerpml68 <contact@pml68.dev>2025-04-16 20:08:04 +0200
commit427be61dc78a38586ee4829c0b706d07d3d9cbf0 (patch)
tree3d54f6a518206a91a07c9a1a199130f22f2e91b7
parentchore(deps): regenerate lockfile, update dependencies (diff)
downloadiced-builder-427be61dc78a38586ee4829c0b706d07d3d9cbf0.tar.gz
feat: center the window by default
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
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<dyn std::error::Error>> {
.theme(|state| state.theme.value().clone())
.subscription(App::subscription)
.antialiasing(true)
+ .centered()
.run()?;
Ok(())