summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-02-09 10:01:49 +0100
committerBert <ber.t@gmx.com>2011-02-09 10:01:49 +0100
commitd731741f046eecdf2788154b0387baf8f2e67007 (patch)
tree5f554c26bde98a11a2487297d2ffd5d6cd67e936 /window.c
parenta5335e8ddde6aa53e6f625f5ce1ffd6f7ec098c5 (diff)
downloadnsxiv-d731741f046eecdf2788154b0387baf8f2e67007.tar.zst
Handle WM_DELETE_WINDOW messages correctly, thanks to fungt
Diffstat (limited to 'window.c')
-rw-r--r--window.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/window.c b/window.c
index ce69b5d..76a8e87 100644
--- a/window.c
+++ b/window.c
@@ -28,9 +28,10 @@
static Cursor arrow;
static Cursor hand;
-
static GC bgc;
+Atom wm_delete_win;
+
void win_set_sizehints(win_t *win) {
XSizeHints sizehints;
@@ -122,6 +123,9 @@ 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);