mouse: Fix a bad refactoring

The `wibox_under_mouse` property was renamed `current_wibox` but
a call wasn't updated.
This commit is contained in:
Emmanuel Lepage Vallee 2016-10-09 01:26:09 -04:00
parent a20dd4ad61
commit 2303e31355
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ end
-- @function awful.mouse.wibox.move -- @function awful.mouse.wibox.move
--@tparam wibox w The wibox to move, or none to use that under the pointer --@tparam wibox w The wibox to move, or none to use that under the pointer
function mouse.wibox.move(w) 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 then return end
if not w if not w