summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-06-17 21:47:03 +0200
committerGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-06-17 21:47:03 +0200
commitd390a25a61f2f9ba17938079a704f38a60e4f149 (patch)
treefda5ed591ca4f5f293c31db884796ae12e7bd0e8 /playlist.c
parent1b1b61f2de8f438ab9dc00c09f9ffeab41f5539c (diff)
gtkui: better custom title configuration using context menu
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/playlist.c b/playlist.c
index 1d192a3f..16f0e6a1 100644
--- a/playlist.c
+++ b/playlist.c
@@ -2906,7 +2906,7 @@ pl_format_title_int (const char *escape_chars, playItem_t *it, int idx, char *s,
}
else if (*fmt == 'a') {
meta = pl_find_meta_raw (it, "artist");
- const char *custom = pl_find_meta_raw (it, "DDB:CUSTOM_TITLE");
+ const char *custom = pl_find_meta_raw (it, ":CUSTOM_TITLE");
if (!meta && !custom) {
meta = "Unknown artist";
}
@@ -2970,7 +2970,7 @@ pl_format_title_int (const char *escape_chars, playItem_t *it, int idx, char *s,
}
}
- const char *custom = pl_find_meta_raw (it, "DDB:CUSTOM_TITLE");
+ const char *custom = pl_find_meta_raw (it, ":CUSTOM_TITLE");
if (custom) {
if (!meta) {
meta = custom;