mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-16 07:47:22 +01:00
awful.key: Fix the modifiers
property.
It was called `mod` rather than `modifiers`.
This commit is contained in:
parent
c391fc7fe4
commit
6338412b5f
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ local function new_common(mod, keys, press, release, data)
|
|||
|
||||
-- append custom userdata (like description) to a hotkey
|
||||
data = data and gtable.clone(data) or {}
|
||||
data.mod = mod
|
||||
data.mod, data.modifiers = mod, mod
|
||||
data.keys = keys
|
||||
data.on_press = press
|
||||
data.on_release = release
|
||||
|
|
Loading…
Reference in a new issue