Fix edge case where the welcome page might open in the dock if the user's actions race the welcome experience action

This commit is contained in:
Mikayla Maki 2023-03-06 16:35:15 -08:00
parent ba652fc033
commit 1f6bd0ea77
2 changed files with 18 additions and 1 deletions

View file

@ -266,7 +266,7 @@ pub fn init(app_state: &Arc<AppState>, cx: &mut gpui::MutableAppContext) {
open_new(&app_state, cx, |workspace, cx| {
workspace.toggle_sidebar(SidebarSide::Left, cx);
let welcome_page = cx.add_view(|cx| welcome::WelcomePage::new(cx));
workspace.add_item(Box::new(welcome_page.clone()), cx);
workspace.add_item_to_center(Box::new(welcome_page.clone()), cx);
Dock::move_dock(workspace, settings::DockAnchor::Bottom, false, cx);
cx.focus(welcome_page);
cx.notify();