From 7c2cd9797d2b4861c01b0d161de4d8ac593d2b31 Mon Sep 17 00:00:00 2001 From: Jeffrey Middleton Date: Tue, 19 May 2009 14:58:52 -0500 Subject: [PATCH] defaults: correct status/list formats The missing brackets caused literal "%title%|%shortfile%" to be displayed, instead of the intended falling back to filename absent a title. --- src/defaults.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/defaults.h b/src/defaults.h index 91cf334..4c32e4e 100644 --- a/src/defaults.h +++ b/src/defaults.h @@ -27,10 +27,10 @@ #define DEFAULT_SCREEN_LIST "playlist browse" /* song format - list window */ -#define DEFAULT_LIST_FORMAT "%name%|[%artist% - ]%title%|%shortfile%" +#define DEFAULT_LIST_FORMAT "%name%|[%artist% - ][%title%|%shortfile%]" /* song format - status window */ -#define DEFAULT_STATUS_FORMAT "[%artist% - ]%title%|%shortfile%" +#define DEFAULT_STATUS_FORMAT "[%artist% - ][%title%|%shortfile%]" #define DEFAULT_LYRICS_TIMEOUT 100 -- 2.30.2