From 73057891946b33b2d54502f5d944e5cdba5faa82 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 13:03:16 -0300 Subject: [PATCH] fix: clearing before setting color --- lua/CC Tweaked/tutel/tutel-host.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index 61080a6..da0fd3f 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -352,11 +352,12 @@ end function drawCommandBar(w, y) term.setCursorPos(1, y) - term.clearLine() - + term.setBackgroundColor(colors.white) term.setTextColor(colors.black) + term.clearLine() + term.write("$ ") local startingIndex = commandBuffer:len() - w - 3