From 2119d4fb2af05a7a6ee5871336158a7f125e3977 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Sun, 1 Jan 2023 17:21:35 -0800 Subject: [PATCH] attach hotkeys widget to all viewscreens and introduce new snazzy logo --- plugins/lua/hotkeys.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/lua/hotkeys.lua b/plugins/lua/hotkeys.lua index 3ad910495..999527d0d 100644 --- a/plugins/lua/hotkeys.lua +++ b/plugins/lua/hotkeys.lua @@ -13,13 +13,13 @@ HotspotMenuWidget = defclass(HotspotMenuWidget, overlay.OverlayWidget) HotspotMenuWidget.ATTRS{ default_pos={x=1,y=2}, hotspot=true, - viewscreens={'dwarfmode'}, + viewscreens='all', overlay_onupdate_max_freq_seconds=0, frame={w=4, h=3} } function HotspotMenuWidget:init() - self:addviews{widgets.Label{text={'!!!!', NEWLINE, '!!!!', NEWLINE, '!!!!'}}} + self:addviews{widgets.Label{text={'!DF!', NEWLINE, '!Ha!', NEWLINE, '!ck!'}}} self.mouseover = false end