Skip to content

Commit

Permalink
Rename 'file browse mode' to try and discourage it's use. Browsing th…
Browse files Browse the repository at this point in the history
…e database is now 'Browse Library (recommended) and what was called file browse is now 'Browse Filesystem (slow)'
  • Loading branch information
stuartm committed Mar 15, 2012
1 parent 9e80861 commit 9b6cdba
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions mythtv/programs/mythfrontend/videodlg.cpp
Expand Up @@ -2458,16 +2458,17 @@ MythMenu* VideoDialog::CreateViewMenu()
if (!(m_d->m_type & DLG_MANAGER))
menu->AddItem(tr("Switch to Manage View"), SLOT(SwitchManager()));

if (m_d->m_isFileBrowser)
menu->AddItem(tr("Disable File Browse Mode"), SLOT(ToggleBrowseMode()));
else
menu->AddItem(tr("Enable File Browse Mode"), SLOT(ToggleBrowseMode()));

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

if (m_d->m_isFileBrowser)
menu->AddItem(tr("Browse Library (recommended)"), SLOT(ToggleBrowseMode()));
else
menu->AddItem(tr("Browse Filesystem (slow)"), SLOT(ToggleBrowseMode()));


return menu;
}

Expand Down

0 comments on commit 9b6cdba

Please sign in to comment.