mirror of https://github.com/stella-emu/stella.git
Remove ellipses from LauncherDialog options that don't lead to a dialog.
This commit is contained in:
parent
65d23b4a6e
commit
020d8b18c2
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue