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:
parent
a20dd4ad61
commit
2303e31355
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue