]> Skullheadx's Git Forge - dmenu.git/commit
XUngrabKeyboard() instead of XUngrabKey()
authorAdam Purkrt <adam@purkrt.cz>
Sat, 15 Mar 2025 18:53:56 +0000 (19:53 +0100)
committerHiltjo Posthuma <hiltjo@codemadness.org>
Mon, 17 Mar 2025 20:01:05 +0000 (21:01 +0100)
commitb1e217b29aab8936e9831961943676acd9cdcdd8
treef1333499a3c824059db9f95af3a7697d5d92a809
parent86f0b5119eaa39943013d009967432ffd9d18365
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.
dmenu.c