phillbush / shod

mouse-based window manager that can tile windows inside floating containers
MIT License
177 stars 5 forks source link

hotkeys stop working #1

Closed netfun81 closed 3 years ago

netfun81 commented 3 years ago

I like your window manager and the way it tabs and tiles. I have an issue which ive duplicated using both sxhkd and xbindkeys. If creating several tab windows and then closing them quickly the hotkey program will stop responding and then no other hotkeys will work. I didnt notice that happen with only floating containers that contain no other windows.

phillbush commented 3 years ago

I just checked the code and realized that I forgot to call XUngrabPointer(3) after calling XGrabPointer(3) in one of the mouse related functions. This commit fixes that.

Maybe the keybinding programs refused to work because the pointer was grabbed.
I could not reproduce this bug on my system. Can you check if it works now for you?

netfun81 commented 3 years ago

I tried the update from today and seems to be working good. Thank you!