commit 1fb3ec576ca4de2056a914b8bc3fd5ba8e99429e
Author: Bert Münnich <[email protected]>
AuthorDate: Wed May 17 15:51:47 2017 +0200
Commit: Bert Münnich <[email protected]>
CommitDate: Wed May 17 15:51:47 2017 +0200
Properly quit when window gets closed; fixes issue #27
diff --git a/main.c b/main.c
index d903c7b..9e337f4 100644
--- a/main.c
+++ b/main.c
@@ -739,7 +739,7 @@ void run(void)
break;
case ClientMessage:
if ((Atom) ev.xclient.data.l[0] ==
atoms[ATOM_WM_DELETE_WINDOW])
- return;
+ cmds[g_quit].func(0);
break;
case ConfigureNotify:
if (win_configure(&win, &ev.xconfigure)) {