tiny tag editor: fix file edition in local browser

master
Andrzej Rybczak 13 years ago
parent efa7a99167
commit a1b57a45af
  1. 5
      src/tiny_tag_editor.cpp

@ -169,7 +169,10 @@ void TinyTagEditor::mouseButtonPressed(MEVENT me)
void TinyTagEditor::SetEdited(const MPD::Song &s)
{
itsEdited = s;
if (auto ms = dynamic_cast<const MPD::MutableSong *>(&s))
itsEdited = *ms;
else
itsEdited = s;
}
bool TinyTagEditor::getTags()

Loading…
Cancel
Save