aboutsummaryrefslogtreecommitdiffstats
path: root/group.c
diff options
context:
space:
mode:
authorokan2014-08-18 13:57:57 +0000
committerokan2014-08-18 13:57:57 +0000
commit3fdfda76527cf75885aabd06006fce424b696245 (patch)
treeedda8e074e40d3a35223a3ad5d115b0e8bd54635 /group.c
parent8fcbf7b8c5ca91ed2e01de4f3bc0b73dedb8d209 (diff)
downloadcwm-3fdfda76527cf75885aabd06006fce424b696245.tar.gz
Get rid of nhidden in group_ctx; it actually never reported correctly
since nhidden wasn't incremented nor decremeted in all the right places, thus confusing matters. We don't need to carry a count around, so just use a local variable in the one place we need one to supply XRestackWindows().
Diffstat (limited to 'group.c')
-rw-r--r--group.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/group.c b/group.c
index 67d0c41..ade20af 100644
--- a/group.c
+++ b/group.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: group.c,v 1.87 2014/02/08 02:49:30 okan Exp $
+ * $OpenBSD: group.c,v 1.88 2014/08/18 13:57:57 okan Exp $
*/
#include <sys/param.h>
@@ -68,15 +68,13 @@ group_hide(struct screen_ctx *sc, struct group_ctx *gc)
screen_updatestackingorder(sc);
- gc->nhidden = 0;
gc->highstack = 0;
TAILQ_FOREACH(cc, &gc->clients, group_entry) {
client_hide(cc);
- gc->nhidden++;
if (cc->stackingorder > gc->highstack)
gc->highstack = cc->stackingorder;
}
- gc->hidden = 1; /* XXX: equivalent to gc->nhidden > 0 */
+ gc->hidden = 1;
}
static void
@@ -85,6 +83,7 @@ group_show(struct screen_ctx *sc, struct group_ctx *gc)
struct client_ctx *cc;
Window *winlist;
int i, lastempty = -1;
+ int nwins = 0;
gc->highstack = 0;
TAILQ_FOREACH(cc, &gc->clients, group_entry) {
@@ -100,6 +99,7 @@ group_show(struct screen_ctx *sc, struct group_ctx *gc)
TAILQ_FOREACH(cc, &gc->clients, group_entry) {
winlist[gc->highstack - cc->stackingorder] = cc->win;
client_unhide(cc);
+ nwins++;
}
/* Un-sparseify */
@@ -113,7 +113,7 @@ group_show(struct screen_ctx *sc, struct group_ctx *gc)
}
}
- XRestackWindows(X_Dpy, winlist, gc->nhidden);
+ XRestackWindows(X_Dpy, winlist, nwins);
free(winlist);
gc->hidden = 0;
@@ -177,10 +177,8 @@ group_movetogroup(struct client_ctx *cc, int idx)
gc = &sc->groups[idx];
if (cc->group == gc)
return;
- if (gc->hidden) {
+ if (gc->hidden)
client_hide(cc);
- gc->nhidden++;
- }
group_assign(gc, cc);
}