mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-05-11 17:35:57 +08:00
Fix mouse bind consistency in app drawer and dashboard
This commit is contained in:
parent
a535cede1e
commit
77e46e953d
2 changed files with 4 additions and 4 deletions
|
|
@ -142,6 +142,10 @@ app_drawer:buttons(gears.table.join(
|
|||
awful.button({ }, 1, function ()
|
||||
app_drawer_hide()
|
||||
end),
|
||||
-- Right click - Hide app_drawer
|
||||
awful.button({ }, 2, function ()
|
||||
app_drawer_hide()
|
||||
end),
|
||||
-- Middle click - Hide app_drawer
|
||||
awful.button({ }, 2, function ()
|
||||
app_drawer_hide()
|
||||
|
|
|
|||
|
|
@ -32,10 +32,6 @@ dashboard:buttons(gears.table.join(
|
|||
-- Middle click - Hide dashboard
|
||||
awful.button({ }, 2, function ()
|
||||
dashboard_hide()
|
||||
end),
|
||||
-- Right click - Hide dashboard
|
||||
awful.button({ }, 3, function ()
|
||||
dashboard_hide()
|
||||
end)
|
||||
))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue