fix nasty bug related to overlapping names

master
Andrzej Rybczak 14 years ago
parent b2b16be9ce
commit 3a1175343f
  1. 2
      src/media_library.cpp
  2. 4
      src/tag_editor.cpp

@ -213,7 +213,7 @@ void MediaLibrary::switchTo()
if (hasTwoColumns)
{
if (w == Tags)
NextColumn();
nextColumn();
if (Config.titles_visibility)
{
std::string item_type = lowercase(tagTypeToString(Config.media_lib_primary_tag));

@ -992,8 +992,8 @@ void TagEditor::LocateSong(const MPD::Song &s)
// and then songs in right column are not visible.
TagTypes->reset();
// go to the right column
NextColumn();
NextColumn();
nextColumn();
nextColumn();
// highlight our file
for (size_t i = 0; i < Tags->size(); ++i)

Loading…
Cancel
Save