summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/wps-display.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index c5525a73b5..ed6b1d10cc 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -517,6 +517,11 @@ static void format_display(char* buf,
}
*buf = 0;
+
+ /* If no flags have been set, the line didn't contain any format codes.
+ We still want to refresh it. */
+ if(*flags == 0)
+ *flags = WPS_REFRESH_STATIC;
}
bool wps_refresh(struct mp3entry* id3, int ffwd_offset, unsigned char refresh_mode)