feat: make the dashboard window bigger

This commit is contained in:
2026-05-12 23:46:30 +08:00
parent fe7efa89d1
commit ee226178b2

View File

@@ -13,7 +13,7 @@ pub fn open_window(cx: &mut gpui::App) -> anyhow::Result<()> {
let (top_left, window_bounds) = cx.read_global::<app::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),
)
});