summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c82b79f)
raw | patch | inline | side by side (parent: c82b79f)
author | Jeffrey Middleton <jefromi@gmail.com> | |
Tue, 19 May 2009 19:58:52 +0000 (14:58 -0500) | ||
committer | Jeffrey Middleton <jefromi@gmail.com> | |
Thu, 29 Oct 2009 03:06:05 +0000 (22:06 -0500) |
The missing brackets caused literal "%title%|%shortfile%" to be
displayed, instead of the intended falling back to filename absent a
title.
displayed, instead of the intended falling back to filename absent a
title.
src/defaults.h | patch | blob | history |
diff --git a/src/defaults.h b/src/defaults.h
index 91cf33499d483a96d752824e16fccb9620ca23ca..4c32e4ea971824d3dc1ecb7d3c508ca3603e2816 100644 (file)
--- a/src/defaults.h
+++ b/src/defaults.h
#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