tag editor: fix filename change detection

This commit is contained in:
Andrzej Rybczak
2014-08-27 06:09:22 +02:00
parent e7c2e7790f
commit e3e6aa09cc
6 changed files with 24 additions and 24 deletions

View File

@@ -371,12 +371,12 @@ void Display::Tags(NC::Menu<MPD::MutableSong> &menu)
}
else if (i == 12)
{
if (s.getNewURI().empty())
if (s.getNewName().empty())
menu << Charset::utf8ToLocale(s.getName());
else
menu << Charset::utf8ToLocale(s.getName())
<< Config.color2 << " -> " << NC::Color::End
<< Charset::utf8ToLocale(s.getNewURI());
<< Charset::utf8ToLocale(s.getNewName());
}
}
#endif // HAVE_TAGLIB_H