From ee226178b27a63cfc3e6a5e9a52316840471283a Mon Sep 17 00:00:00 2001 From: Kenneth Date: Tue, 12 May 2026 23:46:30 +0800 Subject: [PATCH] feat: make the dashboard window bigger --- src/screen/dashboard/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen/dashboard/mod.rs b/src/screen/dashboard/mod.rs index ed8834c..d00448b 100644 --- a/src/screen/dashboard/mod.rs +++ b/src/screen/dashboard/mod.rs @@ -13,7 +13,7 @@ pub fn open_window(cx: &mut gpui::App) -> anyhow::Result<()> { let (top_left, window_bounds) = cx.read_global::(|global, cx| { ( global.safe_area.origin, - gpui::Bounds::centered(None, size(px(800.), px(600.0)), cx), + gpui::Bounds::centered(None, size(px(1280.), px(640.0)), cx), ) });