diff options
author | Bert Münnich <be.muennich@googlemail.com> | 2012-08-07 12:09:52 +0200 |
---|---|---|
committer | Bert Münnich <be.muennich@googlemail.com> | 2012-08-07 12:09:52 +0200 |
commit | d5f0a20de0c204b81e422530921be0df41f6c6ce (patch) | |
tree | 579d6aa4618308b21b4c293508f9b5c970eb6fae | |
parent | 5b6467913cca4086ebb6056e7235a3c78570ce6f (diff) |
Fixed WMProtocols registration order (before mapping window)
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | window.c | 7 |
2 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,4 @@ -VERSION = git-20120514 +VERSION = git-20120807 PREFIX = /usr/local MANPREFIX = $(PREFIX)/share/man @@ -128,6 +128,8 @@ void win_init(win_t *win) { warn("no locale support"); win_init_font(e->dpy, BAR_FONT); + + wm_delete_win = XInternAtom(e->dpy, "WM_DELETE_WINDOW", False); } void win_set_sizehints(win_t *win) { @@ -209,6 +211,8 @@ void win_open(win_t *win) { classhint.res_class = "Sxiv"; XSetClassHint(e->dpy, win->xwin, &classhint); + XSetWMProtocols(e->dpy, win->xwin, &wm_delete_win, 1); + if (!options->hide_bar) { win->barh = font.ascent + font.descent + 2 * V_TEXT_PAD; win->h -= win->barh; @@ -220,9 +224,6 @@ void win_open(win_t *win) { XMapWindow(e->dpy, win->xwin); XFlush(e->dpy); - wm_delete_win = XInternAtom(e->dpy, "WM_DELETE_WINDOW", False); - XSetWMProtocols(e->dpy, win->xwin, &wm_delete_win, 1); - if (options->fullscreen) win_toggle_fullscreen(win); } |