mirror of
https://github.com/0intro/wmii
synced 2025-02-15 13:54:26 +03:00
Fix the stacking of the bar when there are fullscreen windows.
This commit is contained in:
parent
6e9deaaec5
commit
5b3e057a96
@ -281,7 +281,7 @@ struct {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* There's no way to check accesses to destroyed windows, thus
|
* 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
|
* Other types of errors call Xlib's default error handler, which
|
||||||
* calls exit().
|
* calls exit().
|
||||||
*/
|
*/
|
||||||
|
@ -215,8 +215,10 @@ restack_view(View *v) {
|
|||||||
if(f != a->sel)
|
if(f != a->sel)
|
||||||
wins[n++] = f->client->framewin;
|
wins[n++] = f->client->framewin;
|
||||||
}
|
}
|
||||||
if(n)
|
if(n) {
|
||||||
|
XRaiseWindow(blz.dpy, wins[0]);
|
||||||
XRestackWindows(blz.dpy, wins, n);
|
XRestackWindows(blz.dpy, wins, n);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user