all repos — openbox @ a057d14c8b5a84de681df8c6319c6bec002272e4

openbox fork - make it a bit more like ryudo

stop shownig the desktop when a new window maps
Dana Jansens danakj@orodu.net
commit

a057d14c8b5a84de681df8c6319c6bec002272e4

parent

56527d41b7f4644c12226b78f38a3d641d82c57a

1 files changed, 9 insertions(+), 16 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -255,6 +255,8 @@

/* update the focus lists */ focus_order_add_new(self); + stacking_add(CLIENT_AS_WINDOW(self)); + /* focus the new window? */ if (ob_state() != OB_STATE_STARTING && config_focus_new && /* note the check against Type_Normal/Dialog, not client_normal(self),

@@ -263,14 +265,10 @@ strict rules for focus */

(self->type == OB_CLIENT_TYPE_NORMAL || self->type == OB_CLIENT_TYPE_DIALOG)) { - if (self->desktop != screen_desktop) - { + if (self->desktop != screen_desktop) { /* activate the window */ - stacking_add(CLIENT_AS_WINDOW(self)); activate = TRUE; - } - else - { + } else { gboolean group_foc = FALSE; if (self->group) {

@@ -293,19 +291,9 @@ !focus_client ||

!client_normal(focus_client)) { /* activate the window */ - stacking_add(CLIENT_AS_WINDOW(self)); activate = TRUE; } - else - { - /* try to not get in the way */ - stacking_add_nonintrusive(CLIENT_AS_WINDOW(self)); - } } - } - else - { - stacking_add(CLIENT_AS_WINDOW(self)); } dispatch_client(Event_Client_New, self, 0, 0);

@@ -323,6 +311,11 @@ a window maps since its not based on an action from the user like

clicking a window to activate is. so keep the new window out of the way but do focus it. */ if (activate) client_focus(self); + + /* client_activate does this but we aret using it so we have to do it + here as well */ + if (screen_showing_desktop) + screen_show_desktop(FALSE); /* update the list hints */ client_set_list();