From: Andre Noll Date: Thu, 22 Oct 2020 15:50:06 +0000 (+0200) Subject: gui: Fix length of audio format field. X-Git-Tag: v0.6.3~3 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=3619c3e872fe092438545f4828a4fd116f0f341f;ds=sidebyside gui: Fix length of audio format field. Without this, the contents of the subsequent item (numplayed) are overwritten by spaces. This only affects the colorful blackness theme. --- diff --git a/gui_theme.c b/gui_theme.c index f0efaa88..6f4acf37 100644 --- a/gui_theme.c +++ b/gui_theme.c @@ -149,7 +149,7 @@ static void init_theme_colorful_blackness(struct gui_theme *t) d[SI_format].align = CENTER; d[SI_format].x = 42; d[SI_format].y = 17; - d[SI_format].len = 18; + d[SI_format].len = 16; d[SI_num_played].prefix = "#"; d[SI_num_played].postfix = "";