add commit panel

This commit is contained in:
2026-08-14 08:49:08 +07:00
parent 9b1dd526a5
commit 080a026d3f
10 changed files with 1135 additions and 16 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ fn main() {
signed_state::GitStore::set_global(paths::repos_dir().clone(), cx);
// Set up the window bounds
let bounds = Bounds::centered(None, size(px(1120.0), px(720.0)), cx);
let bounds = Bounds::centered(None, size(px(1120.0), px(750.0)), cx);
// Set up the window options
let opts = WindowOptions {
@@ -50,7 +50,7 @@ fn main() {
};
cx.spawn(async move |cx| {
let _ = cx.open_window(opts, workspace::root);
cx.open_window(opts, workspace::root).ok();
})
.detach();