diff options
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/text.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/text.c b/src/ui/text.c index c36fceb5..231c2976 100644 --- a/src/ui/text.c +++ b/src/ui/text.c | |||
@@ -658,7 +658,7 @@ static iRect run_Font_(iFont *d, enum iRunMode mode, iRangecc text, size_t maxLe | |||
658 | iRegExpMatch m; | 658 | iRegExpMatch m; |
659 | init_RegExpMatch(&m); | 659 | init_RegExpMatch(&m); |
660 | if (match_RegExp(text_.ansiEscape, chPos, text.end - chPos, &m)) { | 660 | if (match_RegExp(text_.ansiEscape, chPos, text.end - chPos, &m)) { |
661 | if (mode & draw_RunMode) { | 661 | if (mode & draw_RunMode && ~mode & permanentColorFlag_RunMode) { |
662 | /* Change the color. */ | 662 | /* Change the color. */ |
663 | const iColor clr = | 663 | const iColor clr = |
664 | ansiForeground_Color(capturedRange_RegExpMatch(&m, 1), tmParagraph_ColorId); | 664 | ansiForeground_Color(capturedRange_RegExpMatch(&m, 1), tmParagraph_ColorId); |
@@ -729,7 +729,7 @@ static iRect run_Font_(iFont *d, enum iRunMode mode, iRangecc text, size_t maxLe | |||
729 | } | 729 | } |
730 | if (ch == '\r') { | 730 | if (ch == '\r') { |
731 | const iChar esc = nextChar_(&chPos, text.end); | 731 | const iChar esc = nextChar_(&chPos, text.end); |
732 | if (mode & draw_RunMode) { | 732 | if (mode & draw_RunMode && ~mode & permanentColorFlag_RunMode) { |
733 | const iColor clr = get_Color(esc - asciiBase_ColorEscape); | 733 | const iColor clr = get_Color(esc - asciiBase_ColorEscape); |
734 | SDL_SetTextureColorMod(text_.cache, clr.r, clr.g, clr.b); | 734 | SDL_SetTextureColorMod(text_.cache, clr.r, clr.g, clr.b); |
735 | } | 735 | } |