Browse Source

Made fullscreen work under buggy window managers

master
Bert 14 years ago
parent
commit
d227b17d96
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      window.c

+ 1
- 2
window.c View File

@@ -243,8 +243,7 @@ void win_toggle_fullscreen(win_t *win) {
cm->format = 32;
cm->data.l[0] = win->fullscreen;
cm->data.l[1] = XInternAtom(win->env.dpy, "_NET_WM_STATE_FULLSCREEN", False);
cm->data.l[2] = XInternAtom(win->env.dpy, "_NET_WM_STATE_ABOVE", False);
cm->data.l[3] = 0;
cm->data.l[2] = cm->data.l[3] = 0;

XSendEvent(win->env.dpy, DefaultRootWindow(win->env.dpy), False,
SubstructureNotifyMask | SubstructureRedirectMask, &ev);


Loading…
Cancel
Save