diff --git a/coordinator/startup.lua b/coordinator/startup.lua index 95178ad..b169b06 100644 --- a/coordinator/startup.lua +++ b/coordinator/startup.lua @@ -19,7 +19,7 @@ local iocontrol = require("coordinator.iocontrol") local renderer = require("coordinator.renderer") local sounder = require("coordinator.sounder") -local COORDINATOR_VERSION = "v0.12.4" +local COORDINATOR_VERSION = "v0.12.5" local print = util.print local println = util.println diff --git a/coordinator/ui/components/unit_detail.lua b/coordinator/ui/components/unit_detail.lua index 1abf307..a29dd4b 100644 --- a/coordinator/ui/components/unit_detail.lua +++ b/coordinator/ui/components/unit_detail.lua @@ -235,8 +235,8 @@ local function init(parent, id) TextBox{parent=main,text="REACTOR COOLANT SYSTEM",fg_bg=cpair(colors.black,colors.blue),alignment=TEXT_ALIGN.CENTER,width=33,height=1,x=46,y=22} local rcs = Rectangle{parent=main,border=border(1,colors.blue,true),thin=true,width=33,height=24,x=46,y=23} - local rcs_annunc = Div{parent=rcs,width=27,height=23,x=2,y=1} - local rcs_tags = Div{parent=rcs,width=2,height=14,x=29,y=8} + local rcs_annunc = Div{parent=rcs,width=27,height=22,x=3,y=1} + local rcs_tags = Div{parent=rcs,width=2,height=16,x=1,y=7} local c_flt = IndicatorLight{parent=rcs_annunc,label="RCS Hardware Fault",colors=cpair(colors.yellow,colors.gray)} local c_emg = TriIndicatorLight{parent=rcs_annunc,label="Emergency Coolant",c1=colors.gray,c2=colors.white,c3=colors.green} diff --git a/graphics/elements/rectangle.lua b/graphics/elements/rectangle.lua index a4d8dde..2f7a68d 100644 --- a/graphics/elements/rectangle.lua +++ b/graphics/elements/rectangle.lua @@ -83,8 +83,8 @@ local function rectangle(args) p_a = util.strrep("\x83", inner_width + width_x2) p_b = util.strrep("\x8f", inner_width + width_x2) else - p_a = util.spaces(border_width) .. util.strrep("\x83", inner_width) .. util.spaces(border_width) - p_b = util.spaces(border_width) .. util.strrep("\x8f", inner_width) .. util.spaces(border_width) + p_a = util.spaces(border_width) .. util.strrep("\x8f", inner_width) .. util.spaces(border_width) + p_b = util.spaces(border_width) .. util.strrep("\x83", inner_width) .. util.spaces(border_width) end p_s = spaces