only focus on startup if focus_new is true

This commit is contained in:
Dana Jansens 2003-04-25 22:40:04 +00:00
parent d3c094357d
commit fd89a7eadc

View file

@ -135,10 +135,11 @@ void client_manage_all()
startup_stack_order = NULL;
startup_stack_size = 0;
if (config_focus_new) {
active = g_hash_table_lookup(client_map, &startup_active);
if (!active || !client_focus(active))
if (config_focus_new)
focus_fallback(Fallback_NoFocus);
}
}
void client_manage(Window window)