From 6eccebbe39a3782a0cc0ceb0b541a4b0ad3f63ce Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Sat, 17 Feb 2024 18:16:21 -0500 Subject: [PATCH] #409 fixed positioning --- supervisor/configure.lua | 2 +- supervisor/startup.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisor/configure.lua b/supervisor/configure.lua index 745c082..50d404b 100644 --- a/supervisor/configure.lua +++ b/supervisor/configure.lua @@ -331,7 +331,7 @@ local function config_view(display) TextBox{parent=div,x=1,y=1,width=33,height=1,text="Unit "..i.." will be connected to..."} TextBox{parent=div,x=6,y=2,width=3,height=1,text="..."} - local tank_opt = Radio2D{parent=div,x=10,y=2,rows=1,columns=2,default=val,options={"its own Unit Tank","a Facility Tank"},radio_colors=cpair(colors.lightGray,colors.black),select_color=colors.yellow,disable_color=colors.gray,disable_fg_bg=g_lg_fg_bg} + local tank_opt = Radio2D{parent=div,x=9,y=2,rows=1,columns=2,default=val,options={"its own Unit Tank","a Facility Tank"},radio_colors=cpair(colors.lightGray,colors.black),select_color=colors.yellow,disable_color=colors.gray,disable_fg_bg=g_lg_fg_bg} local no_tank = TextBox{parent=div,x=9,y=2,width=34,height=1,text="no tank (as you set two steps ago)",fg_bg=cpair(colors.gray,colors.lightGray),hidden=true} tool_ctl.tank_elems[i] = { div = div, tank_opt = tank_opt, no_tank = no_tank } diff --git a/supervisor/startup.lua b/supervisor/startup.lua index e4ab974..4e86a1e 100644 --- a/supervisor/startup.lua +++ b/supervisor/startup.lua @@ -21,7 +21,7 @@ local supervisor = require("supervisor.supervisor") local svsessions = require("supervisor.session.svsessions") -local SUPERVISOR_VERSION = "v1.2.5" +local SUPERVISOR_VERSION = "v1.2.6" local println = util.println local println_ts = util.println_ts