From a4681775ae564db186ecb72e78cce56940b4fd8f Mon Sep 17 00:00:00 2001 From: Matan Ziv-Av Date: Tue, 9 Aug 2022 15:01:24 +0300 Subject: [PATCH] Modify setDefaultRendition() to reset the underline color. --- src/Screen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Screen.cpp b/src/Screen.cpp index d137daf8..ef443bc8 100644 --- a/src/Screen.cpp +++ b/src/Screen.cpp @@ -1510,6 +1510,7 @@ void Screen::setDefaultRendition() { setForeColor(COLOR_SPACE_DEFAULT, DEFAULT_FORE_COLOR); setBackColor(COLOR_SPACE_DEFAULT, DEFAULT_BACK_COLOR); + _currentULColor = 0; _currentRendition = {DEFAULT_RENDITION}; updateEffectiveRendition(); }