From 2303e313554001f6d8de563aa54335487e0772a3 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage Vallee Date: Sun, 9 Oct 2016 01:26:09 -0400 Subject: [PATCH] mouse: Fix a bad refactoring The `wibox_under_mouse` property was renamed `current_wibox` but a call wasn't updated. --- lib/awful/mouse/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/awful/mouse/init.lua b/lib/awful/mouse/init.lua index d47e93466..23240429f 100644 --- a/lib/awful/mouse/init.lua +++ b/lib/awful/mouse/init.lua @@ -124,7 +124,7 @@ end -- @function awful.mouse.wibox.move --@tparam wibox w The wibox to move, or none to use that under the pointer function mouse.wibox.move(w) - w = w or mouse.wibox_under_pointer() + w = w or mouse.current_wibox if not w then return end if not w