diff options
author | streetturtle <streetturtle@gmail.com> | 2020-12-26 14:43:05 -0500 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2020-12-26 14:44:36 -0500 |
commit | a02d9889fa9dc588c3cc06ab050773ead3efb071 (patch) | |
tree | 9beb9761218befe60e6f192d66b378eaab9efeee | |
parent | e5db4cf4ca8b6749567e2fed240cd927095b0660 (diff) |
[todo] hide popup on right click
-rw-r--r-- | todo-widget/todo.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/todo-widget/todo.lua b/todo-widget/todo.lua index b8ce3cf..e612545 100644 --- a/todo-widget/todo.lua +++ b/todo-widget/todo.lua @@ -59,8 +59,9 @@ function todo_widget:update_counter(todos) end local popup = awful.popup{ - bg = beautiful.bg_normal, ontop = true, + hide_on_right_click = true, + bg = beautiful.bg_normal, visible = false, shape = gears.shape.rounded_rect, border_width = 1, |