summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/line.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/line.c b/apps/gui/line.c
index c0fb936f27..c06fc50f26 100644
--- a/apps/gui/line.c
+++ b/apps/gui/line.c
@@ -103,7 +103,7 @@ static void put_icon(struct screen *display, int x, int y,
103 /* Need to change the drawmode: 103 /* Need to change the drawmode:
104 * mono icons should behave like text, inverted on the selector bar 104 * mono icons should behave like text, inverted on the selector bar
105 * native (colored) icons should be drawn as-is */ 105 * native (colored) icons should be drawn as-is */
106 if (!get_icon_format(display->screen_type) == FORMAT_MONO && (line->style & STYLE_INVERT)) 106 if (get_icon_format(display->screen_type) == FORMAT_MONO && (line->style & STYLE_INVERT))
107 drmode = DRMODE_SOLID | DRMODE_INVERSEVID; 107 drmode = DRMODE_SOLID | DRMODE_INVERSEVID;
108 108
109 display->set_drawmode(drmode); 109 display->set_drawmode(drmode);