cvsimport

This commit is contained in:
Christian Neukirchen 2011-02-18 11:50:01 +00:00
commit 9eaece0541
2 changed files with 8 additions and 0 deletions

View File

@ -435,6 +435,9 @@ client_ptrsave(struct client_ctx *cc)
if (client_inbound(cc, x, y)) {
cc->ptr.x = x;
cc->ptr.y = y;
} else {
cc->ptr.x = -1;
cc->ptr.y = -1;
}
}

View File

@ -108,6 +108,11 @@ group_show(struct screen_ctx *sc, struct group_ctx *gc)
u_int i;
int lastempty = -1;
gc->highstack = 0;
TAILQ_FOREACH(cc, &gc->clients, group_entry) {
if (cc->stackingorder > gc->highstack)
gc->highstack = cc->stackingorder;
}
winlist = (Window *) xcalloc(sizeof(*winlist), (gc->highstack + 1));
/*