mirror of
https://github.com/0intro/wmii
synced 2025-02-15 05:44:53 +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
|
||||
* 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().
|
||||
*/
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user