Remove ellipses from LauncherDialog options that don't lead to a dialog.

This commit is contained in:
Stephen Anthony 2018-08-31 15:46:33 -02:30
parent 65d23b4a6e
commit 020d8b18c2
1 changed files with 2 additions and 2 deletions

View File

@ -178,8 +178,8 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent,
// Create context menu for ROM list options
VariantList l;
VarList::push_back(l, "Power-on options" + ELLIPSIS, "override");
VarList::push_back(l, "Show only ROM files" + ELLIPSIS, "roms");
VarList::push_back(l, "Show all files" + ELLIPSIS, "allfiles");
VarList::push_back(l, "Show only ROM files", "roms");
VarList::push_back(l, "Show all files", "allfiles");
VarList::push_back(l, "Reload listing", "reload");
myMenu = make_unique<ContextMenu>(this, osystem.frameBuffer().font(), l);