keyboard: add window rule to send release-events (#2377)

...of modifiers which are part of keybinds. This supports clients (for
example blender) that want to see modifier-release-events even if they are
part of a keybinds.

Most clients (including those using Qt and GTK) are setup to not see these
modifier release events and actually misbehave if they do.  For example
Firefox shows the menu bar if alt is pressed and then released, whereas if
only pressed (because the release is absorbed) nothing happens. So, if
Firefox saw bound modifier-release-events it would show the menu bar every
time the window-switcher is used with alt-tab.

    <windowRules>
      <windowRule identifier="blender" wantAbsorbedModifierReleaseEvents="yes"/>
    </windowRules>

Issue #1507
This commit is contained in:
Johan Malm 2024-11-26 20:02:36 +00:00 committed by GitHub
parent 665b39259a
commit 2f8afb2376
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 48 additions and 3 deletions

View file

@ -1055,6 +1055,18 @@ situation.
can be caused by *<margin>* settings or exclusive layer-shell clients
such as panels.
*<windowRules><windowRule wantAbsorbedModifierReleaseEvents="">* [yes|no|default]
*wantAbsorbedModifierReleaseEvents* allows clients to receive modifier
release events even if they are part of keybinds. Most clients should
not receive these, but some (for example blender) need it in some
situations.
```
<windowRules>
<windowRule identifier="blender" wantAbsorbedModifierReleaseEvents="yes"/>
</windowRules>
```
## MENU
```