wip: connect to github

This commit is contained in:
2026-04-23 11:18:43 +01:00
parent 302d0d3222
commit b327648d31
12 changed files with 399 additions and 97 deletions

View File

@@ -43,6 +43,7 @@ fn setup_application(cx: &mut gpui::App) {
let global = app::Global {
safe_area: bounds(point(px(0.), px(0.)), size(px(72.), px(12.))),
current_theme: cx.window_appearance().into(),
rng: rand::rng(),
};
let top_left = global.safe_area.origin;
@@ -61,7 +62,7 @@ fn setup_application(cx: &mut gpui::App) {
is_resizable: false,
..Default::default()
},
|_window, cx| cx.new(|cx| setup_wizard::new(cx)),
|window, cx| cx.new(|cx| setup_wizard::new(window, cx)),
)
.unwrap();
}