Skip to content

Commit

Permalink
Rename 'Enable/Disable Flat view' in the video browser to 'Show/Hide …
Browse files Browse the repository at this point in the history
…Directory Structure' to try and reduce the confusion this mode currently causes.
  • Loading branch information
stuartm committed Mar 15, 2012
1 parent 1a65193 commit 9e80861
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/videodlg.cpp
Expand Up @@ -2464,9 +2464,9 @@ MythMenu* VideoDialog::CreateViewMenu()
menu->AddItem(tr("Enable File Browse Mode"), SLOT(ToggleBrowseMode()));

if (m_d->m_isFlatList)
menu->AddItem(tr("Disable Flat View"), SLOT(ToggleFlatView()));
menu->AddItem(tr("Show Directory Structure"), SLOT(ToggleFlatView()));
else
menu->AddItem(tr("Enable Flat View"), SLOT(ToggleFlatView()));
menu->AddItem(tr("Hide Directory Structure"), SLOT(ToggleFlatView()));

return menu;
}
Expand Down

0 comments on commit 9e80861

Please sign in to comment.