From 1e27359afa651525bd7d1a042f4dd0fbdc858a7e Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 27 Mar 2022 19:37:16 +0200 Subject: [PATCH] [screen] Drop optimisation Shadows were not displayed correctly, likely because of this check. --- src/terminal/screen.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/terminal/screen.c b/src/terminal/screen.c index a1132fd06..5b0e2bd75 100644 --- a/src/terminal/screen.c +++ b/src/terminal/screen.c @@ -1478,11 +1478,6 @@ add_char_true(struct string *screen, struct screen_driver *driver, && pos->attr == current->attr) \ continue; \ \ - /* Else if the color match and the data is - * ``space''. */ \ - if (pos->data <= ' ' && current->data <= ' ' \ - && pos->attr == current->attr) \ - continue; \ } \ dirty = 1; \ break; \