From ce1ef15bb27e76d28ce1728930d808fa1ed6ac6b Mon Sep 17 00:00:00 2001 From: myk002 Date: Wed, 30 Nov 2022 18:13:19 -0800 Subject: [PATCH] reduce hotspot visuals to a single exclamation mark --- plugins/lua/hotkeys.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/lua/hotkeys.lua b/plugins/lua/hotkeys.lua index d4dc5d799..2fb1bf69e 100644 --- a/plugins/lua/hotkeys.lua +++ b/plugins/lua/hotkeys.lua @@ -19,7 +19,7 @@ HotspotMenuWidget.ATTRS{ } function HotspotMenuWidget:init() - self:addviews{widgets.Label{text='!!'}} + self:addviews{widgets.Label{text='!'}} self.mouseover = false end @@ -176,7 +176,6 @@ function MenuScreen:init() } self.initialize = function() - print('initilize') self.subviews.list:setSelected(is_inverted and #choices or 1) end end