1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[screen] Drop optimisation

Shadows were not displayed correctly, likely because of this check.
This commit is contained in:
Witold Filipczyk 2022-03-27 19:37:16 +02:00
parent 8ee9062955
commit 1e27359afa

View File

@ -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; \