Browse Source

Minor bugfix

master
Yessiest 2 years ago
parent
commit
e8dfae3013
  1. 1
      .gitignore
  2. 1
      desktop.conf
  3. 2
      libs/context_menu.lua

1
.gitignore

@ -1,3 +1,4 @@
/desktop.conf
/wallpaper.txt
/links
/libs/pam

1
desktop.conf

@ -29,3 +29,4 @@ modkey+m = ":client.maximize"
# Custom keys
Print = "flameshot gui"
Shift+Print = "flameshot launcher"

2
libs/context_menu.lua

@ -19,7 +19,7 @@ local function position_popup(popup,widget,style)
-- Figure out the geometry of the base widget
local widget_geo
for k,v in pairs(mouse.current_widgets or {}) do
if widget == v then
if (widget == v) and mouse.current_widget_geometries then
widget_geo = mouse.current_widget_geometries[k]
end
end

Loading…
Cancel
Save