From 1b1bfc40e79c1cb81a12560ff96f71334b622203 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Tue, 3 Jan 2023 12:07:40 -0800 Subject: [PATCH] move default hotspot pos one tile to the right so it doesn't overlap with screen borders --- plugins/lua/hotkeys.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/lua/hotkeys.lua b/plugins/lua/hotkeys.lua index 999527d0d..c5e36293f 100644 --- a/plugins/lua/hotkeys.lua +++ b/plugins/lua/hotkeys.lua @@ -11,7 +11,7 @@ local widgets = require('gui.widgets') HotspotMenuWidget = defclass(HotspotMenuWidget, overlay.OverlayWidget) HotspotMenuWidget.ATTRS{ - default_pos={x=1,y=2}, + default_pos={x=2,y=2}, hotspot=true, viewscreens='all', overlay_onupdate_max_freq_seconds=0,