From 6338412b5f4ac59858eb44f8f9f04a04af0c91b0 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Mon, 5 Sep 2022 17:20:56 -0700 Subject: [PATCH] awful.key: Fix the `modifiers` property. It was called `mod` rather than `modifiers`. --- lib/awful/key.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/key.lua b/lib/awful/key.lua index 1fc4b17cc..e078abd7d 100644 --- a/lib/awful/key.lua +++ b/lib/awful/key.lua @@ -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