fix: Fallback color for terminal color if disable in bshrc

This commit is contained in:
boreddevnl 2026-04-20 13:03:11 +02:00
parent f2753c0d57
commit ef32527733

View file

@ -974,6 +974,7 @@ static bool command_starts_with(const char *prefix) {
static void update_input_color(TerminalSession *s) {
if (!s->colors_enabled) {
s->input_color = s->fg_color;
return;
}