X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.c;h=7c799693c333553463982250d092fcc9efcb0cb2;hb=4669203fd8f7dc2ac4aef40ba1a2ce4be404b00b;hp=5f783666ece0e709a1a55044a33505d3327b2597;hpb=774b32f14ed63ee5da4613ba6c1399c54972614d;p=chaz%2Fopenbox diff --git a/openbox/action.c b/openbox/action.c index 5f783666..7c799693 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -2056,29 +2056,41 @@ void action_add_desktop(union ActionData *data) void action_remove_desktop(union ActionData *data) { + guint rmdesktop, movedesktop; + GList *it, *stacking_copy; + if (screen_num_desktops < 2) return; client_action_start(data); - if (screen_desktop == screen_num_desktops - 1) - data->addremovedesktop.current = FALSE; + /* what desktop are we removing and moving to? */ + if (data->addremovedesktop.current) + rmdesktop = screen_desktop; + else + rmdesktop = screen_num_desktops - 1; + if (rmdesktop < screen_num_desktops - 1) + movedesktop = rmdesktop + 1; + else + movedesktop = rmdesktop; - /* move all the clients over */ - if (data->addremovedesktop.current) { - GList *it, *stacking_copy; - - /* make a copy of the list cuz we're changing it */ - stacking_copy = g_list_copy(stacking_list); - for (it = g_list_last(stacking_copy); it; it = g_list_previous(it)) { - if (WINDOW_IS_CLIENT(it->data)) { - ObClient *c = it->data; - if (c->desktop != DESKTOP_ALL && c->desktop > screen_desktop) - client_set_desktop(c, c->desktop - 1, TRUE, TRUE); - /* raise all the windows that are on the current desktop which - is being merged */ - else if (c->desktop == DESKTOP_ALL || - c->desktop == screen_desktop) - stacking_raise(CLIENT_AS_WINDOW(c)); + /* make a copy of the list cuz we're changing it */ + stacking_copy = g_list_copy(stacking_list); + for (it = g_list_last(stacking_copy); it; it = g_list_previous(it)) { + if (WINDOW_IS_CLIENT(it->data)) { + ObClient *c = it->data; + guint d = c->desktop; + if (d != DESKTOP_ALL && d >= movedesktop) { + client_set_desktop(c, c->desktop - 1, TRUE, TRUE); + ob_debug("moving window %s\n", c->title); + } + /* raise all the windows that are on the current desktop which + is being merged */ + if ((screen_desktop == rmdesktop - 1 || + screen_desktop == rmdesktop) && + (d == DESKTOP_ALL || d == screen_desktop)) + { + stacking_raise(CLIENT_AS_WINDOW(c)); + ob_debug("raising window %s\n", c->title); } } }