summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar-skinned.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/statusbar-skinned.c')
-rw-r--r--apps/gui/statusbar-skinned.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/statusbar-skinned.c b/apps/gui/statusbar-skinned.c
index 840ad63c40..0902950599 100644
--- a/apps/gui/statusbar-skinned.c
+++ b/apps/gui/statusbar-skinned.c
@@ -58,7 +58,8 @@ bool sb_set_title_text(char* title, enum themable_icons icon, enum screen_type s
58 } 58 }
59 else if (sb_skin_data[screen].tokens[i].type == WPS_TOKEN_LIST_TITLE_ICON) 59 else if (sb_skin_data[screen].tokens[i].type == WPS_TOKEN_LIST_TITLE_ICON)
60 { 60 {
61 sb_skin_data[screen].tokens[i].value.i = icon+1; 61 /* Icon_NOICON == -1 which the skin engine wants at position 1, so + 2 */
62 sb_skin_data[screen].tokens[i].value.i = icon+2;
62 } 63 }
63 } 64 }
64 return retval; 65 return retval;