From 62e73e9eaf0e72168242db260231a735232b0579 Mon Sep 17 00:00:00 2001 From: Gregor Best Date: Tue, 4 Aug 2009 20:58:34 +0200 Subject: [PATCH] titlebar: fix modkey for buttons Signed-off-by: Gregor Best Signed-off-by: Julien Danjou --- lib/awful/titlebar.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/titlebar.lua.in b/lib/awful/titlebar.lua.in index eb71a197c..8b5649b7a 100644 --- a/lib/awful/titlebar.lua.in +++ b/lib/awful/titlebar.lua.in @@ -100,7 +100,7 @@ function add(c, args) local is = 1 data[c].button_sets = {} for i = 1, #button_groups do - local set = button_groups[i].create(c, modkey, theme) + local set = button_groups[i].create(c, args.modkey, theme) if (set) then data[c].button_sets[is] = set is = is + 1