diff options
Diffstat (limited to 'src/display.cpp')
-rw-r--r-- | src/display.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/display.cpp b/src/display.cpp index d7ebfbda..d3725574 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -336,7 +336,7 @@ void Display::Songs(const MPD::Song &s, void *data, Menu<MPD::Song> *menu) *menu << fmtUnderlineEnd; } -void Display::Tags(const MPD::Song &s, void *data, Menu<MPD::Song> *menu) +void Display::Tags(const MPD::MutableSong &s, void *data, Menu<MPD::MutableSong> *menu) { size_t i = static_cast<Menu<std::string> *>(data)->Choice(); if (i < 11) @@ -345,12 +345,10 @@ void Display::Tags(const MPD::Song &s, void *data, Menu<MPD::Song> *menu) } else if (i == 12) { - // FIXME - /*if (s.GetNewName().empty()) + if (s.getNewURI().empty()) *menu << s.getName(); else - *menu << s.getName() << Config.color2 << " -> " << clEnd << s.GetNewName(); - */ + *menu << s.getName() << Config.color2 << " -> " << clEnd << s.getNewURI(); } } |