From 45881067dff687cffa96aac264a0e136a70e7cae Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Sat, 24 Feb 2024 18:01:30 -0500 Subject: [PATCH] fixed extra space in RCS indicator list --- coordinator/ui/components/unit_detail.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coordinator/ui/components/unit_detail.lua b/coordinator/ui/components/unit_detail.lua index 3c80020..363470e 100644 --- a/coordinator/ui/components/unit_detail.lua +++ b/coordinator/ui/components/unit_detail.lua @@ -261,9 +261,9 @@ local function init(parent, id) -- boiler annunciator panel(s) - if available_space > 0 then _add_space() end - if unit.num_boilers > 0 then + if available_space > 0 then _add_space() end + TextBox{parent=rcs_tags,x=1,text="B1",width=2,height=1,fg_bg=hc_text} local b1_wll = IndicatorLight{parent=rcs_annunc,label="Water Level Low",colors=ind_red} b1_wll.register(b_ps[1], "WaterLevelLow", b1_wll.update)