diff --git a/docs/index.html b/docs/index.html index c9d7a2553..16ea512a7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2261,30 +2261,25 @@ Key (macOS) - Open context-sensitive help - F1 - Shift-Cmd + ? + Go to initial directory (also in other file dialogs) + Alt + Home + Alt + Home + + + Go to previous directory in history (also in other file dialogs) + Alt + Left arrow + Alt + Left arrow + + + Go to next directory in history (also in other file dialogs) + Alt + Right arrow + Alt + Right arrow Go to parent directory (also in other file dialogs) Backspace, Alt + Up arrow Backspace, Alt + Up arrow - - Go to home directory - Alt + Home - Alt + Home - - - Go to previous directory in history - Alt + Left arrow - Alt + Left arrow - - - Go to next directory in history - Alt + Right arrow - Alt + Right arrow - Remove from 'Recently Played' or 'Most Popular' folder Control + X @@ -2321,7 +2316,7 @@ Control + A - Toggle favorites sorting + Toggle favorites sorting (normal or alternative) Control + S Control + S @@ -3280,6 +3275,11 @@ Set the size of the font in the ROM launcher. + +
-launcherbuttons <1|0>
+ Enable bottom buttons in the ROM launcher. + +
-launcherroms <1|0>
Specifies whether to show ROMs only (the default) or all @@ -3298,13 +3298,18 @@ -
-altsorting <1|0>
- Alternative sorting in virtual folders. +
-favorites <1|0>
+ Enable favorites tracking and display. -
-maxrecentroms <1|0>
- Number of ROMs tracked in 'Recently Played' folder. +
-altsorting <1|0>
+ Use alternative sorting in virtual favorites folders. + + + +
-maxrecentroms <number>
+ Set number of ROMs tracked in 'Recently Played' folder (default = 20). diff --git a/docs/index_r77.html b/docs/index_r77.html index 12d9d7475..e238e16d0 100644 --- a/docs/index_r77.html +++ b/docs/index_r77.html @@ -77,7 +77,7 @@ Joystick Button - Action + Action Button 4 @@ -119,7 +119,7 @@ Joystick Button - Action + Action Up @@ -147,10 +147,25 @@ Start selected game - Button 2 or
hold Button 1 + Hold Button 1 + - + Open a context menu with the following choices: + + Button 2 or 6 close the menu without any action. + + + + Button 2 SKILL P2 Open Power-On options + Button 4 COLOR, B/W @@ -166,7 +181,7 @@ Joystick Button - Action + Action Up diff --git a/src/gui/ContextMenu.cxx b/src/gui/ContextMenu.cxx index 42fae421d..7fbe4e721 100644 --- a/src/gui/ContextMenu.cxx +++ b/src/gui/ContextMenu.cxx @@ -331,6 +331,7 @@ void ContextMenu::handleEvent(Event::Type e) moveToLast(); break; case Event::UICancel: + case Event::UIOK: close(); break; default: diff --git a/src/gui/LauncherDialog.cxx b/src/gui/LauncherDialog.cxx index 8a21beaea..16911b6ea 100644 --- a/src/gui/LauncherDialog.cxx +++ b/src/gui/LauncherDialog.cxx @@ -1152,12 +1152,14 @@ void LauncherDialog::openContextMenu(int x, int y) ? "Show all files" : "Show only ROMs", "showall")); #endif - items.push_back(ContextItem("Go to home directory", "homedir")); + items.push_back(ContextItem("Go to initial directory", "homedir")); items.push_back(ContextItem("Go to parent directory", "prevdir")); #ifndef RETRON77 items.push_back(ContextItem("Reload listing", "reload")); - #endif items.push_back(ContextItem("Options" + ELLIPSIS, "options")); + #else + items.push_back(ContextItem("Settings" + ELLIPSIS, "options")); + #endif } else {