Fix the stacking of the bar when there are fullscreen windows.

This commit is contained in:
Kris Maglione 2007-04-24 16:20:43 -04:00
parent 6e9deaaec5
commit 5b3e057a96
2 changed files with 4 additions and 2 deletions

View File

@ -281,7 +281,7 @@ struct {
/*
* There's no way to check accesses to destroyed windows, thus
* those cases are ignored (especially on UnmapNotify's).
* those cases are ignored (especially on UnmapNotifies).
* Other types of errors call Xlib's default error handler, which
* calls exit().
*/

View File

@ -215,8 +215,10 @@ restack_view(View *v) {
if(f != a->sel)
wins[n++] = f->client->framewin;
}
if(n)
if(n) {
XRaiseWindow(blz.dpy, wins[0]);
XRestackWindows(blz.dpy, wins, n);
}
}
void