fix missing snapping mouse buttons

This commit is contained in:
BZ 2021-02-02 12:43:17 +01:00
parent 140b0cde08
commit 2a73dd0264
1 changed files with 12 additions and 0 deletions

View File

@ -506,6 +506,18 @@ local function new(config)
if c then
button_wheel_down(c)
end
end),
awful.button({}, 8, function()
local c = mouse_closest_client()
if c then
button_back(c)
end
end),
awful.button({}, 9, function()
local c = mouse_closest_client()
if c then
button_forward(c)
end
end)
})
else