diff options
| author | 2025-03-15 19:53:56 +0100 | |
|---|---|---|
| committer | 2025-03-17 21:01:05 +0100 | |
| commit | b1e217b29aab8936e9831961943676acd9cdcdd8 (patch) | |
| tree | f1333499a3c824059db9f95af3a7697d5d92a809 | |
| parent | remove extra newline (diff) | |
XUngrabKeyboard() instead of XUngrabKey()
XUngrabKey(), which is currently used in cleanup(), is not the right
counterpart to XGrabKeyboard(), which is used in grabkeyboard(),
called from main().
XUngrabKeyboard() is the function to use, as grabbing the whole
keyboard is different to grabbing individual keys.
With the current code the keyboard gets ungrabbed, as far as I can tell,
only by the final XCloseDisplay() in cleanup(), as the XUngrabKey()
there effectively does nothing.
| -rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ cleanup(void) { size_t i; - XUngrabKey(dpy, AnyKey, AnyModifier, root); + XUngrabKeyboard(dpy, CurrentTime); for (i = 0; i < SchemeLast; i++) free(scheme[i]); for (i = 0; items && items[i].text; ++i) |
