diff options
Diffstat (limited to 'src/sysapp')
-rw-r--r-- | src/sysapp/login/main.lua | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/sysapp/login/main.lua b/src/sysapp/login/main.lua index a246c87..1e9bba1 100644 --- a/src/sysapp/login/main.lua +++ b/src/sysapp/login/main.lua @@ -51,7 +51,8 @@ function alert(text, on_dismiss) tk.grid({}, { { tk.text({padding = 16}, text) }, { tk.box({center_content = true, height = 40}, - tk.text({background = tk.rgb(0, 255, 0), + tk.text({background = tk.rgb(0, 0, 0), + color = tk.rgb(0, 255, 0), padding = 4, on_click = function() win.close() end}, "Ok")) @@ -84,9 +85,8 @@ local function open_listing(path) tk.text(name), tk.text(tostring(size)), tk.box({center_content = true, width = 32}, - tk.text({background = tk.rgb(128, 128, 255), - padding =2, - text_size = 12, + tk.text({background = tk.rgb(0, 0, 0), + color = tk.rgb(128, 128, 255), on_click = function() open_listing(path) end}, "open")) } @@ -125,9 +125,8 @@ local function fsline(fs) return { tk.text(fs .. ":/"), tk.box({center_content = true, width = 32}, - tk.text({background = tk.rgb(128, 128, 255), - padding =2, - text_size = 12, + tk.text({background = tk.rgb(0, 0, 0), + color = tk.rgb(128, 128, 255), on_click = function() open_listing(fs .. ":/") end}, "open")) } |