From 89cd525dc782ba38e4de0033e473311513cfa954 Mon Sep 17 00:00:00 2001 From: Alcor Date: Mon, 11 May 2026 09:51:58 +0200 Subject: [PATCH 3/8] Reset input attributes before clearing to EOL Prevents the overflow/split marker from bleeding into the prompt area --- input.c | 1 + 1 file changed, 1 insertion(+) diff --git a/input.c b/input.c index 748dca2..5eff915 100644 --- a/input.c +++ b/input.c @@ -233,6 +233,7 @@ void inputUpdate(void) { style.bg = Red; } inputAdd(styleInput, &style, ptr); + wattr_set(uiInput, A_NORMAL, 0, NULL); wclrtoeol(uiInput); wmove(uiInput, y, posx); } -- 2.47.3