From a8a549bdd29bed9bab4f0b1d23cc570d68a86bf4 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 20 Apr 2021 08:38:22 +0200 Subject: [PATCH] moved and renamed help action in InputDialog --- src/emucore/EventHandler.cxx | 39 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/src/emucore/EventHandler.cxx b/src/emucore/EventHandler.cxx index a0f7d4268..0f1c56525 100644 --- a/src/emucore/EventHandler.cxx +++ b/src/emucore/EventHandler.cxx @@ -3285,29 +3285,30 @@ EventHandler::EmulActionList EventHandler::ourEmulActionList = { { // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EventHandler::MenuActionList EventHandler::ourMenuActionList = { { - { Event::UIUp, "Move Up", "" }, - { Event::UIDown, "Move Down", "" }, - { Event::UILeft, "Move Left", "" }, - { Event::UIRight, "Move Right", "" }, + { Event::UIHelp, "Open context-sensitive help", "" }, - { Event::UIHome, "Home", "" }, - { Event::UIEnd, "End", "" }, - { Event::UIPgUp, "Page Up", "" }, - { Event::UIPgDown, "Page Down", "" }, + { Event::UIUp, "Move Up", "" }, + { Event::UIDown, "Move Down", "" }, + { Event::UILeft, "Move Left", "" }, + { Event::UIRight, "Move Right", "" }, - { Event::UIOK, "OK", "" }, - { Event::UICancel, "Cancel", "" }, - { Event::UISelect, "Select item", "" }, + { Event::UIHome, "Home", "" }, + { Event::UIEnd, "End", "" }, + { Event::UIPgUp, "Page Up", "" }, + { Event::UIPgDown, "Page Down", "" }, - { Event::UINavPrev, "Previous object", "" }, - { Event::UINavNext, "Next object", "" }, - { Event::UITabPrev, "Previous tab", "" }, - { Event::UITabNext, "Next tab", "" }, + { Event::UIOK, "OK", "" }, + { Event::UICancel, "Cancel", "" }, + { Event::UISelect, "Select item", "" }, - { Event::UIPrevDir, "Parent directory", "" }, - { Event::ToggleFullScreen, "Toggle fullscreen", "" }, - { Event::UIHelp, "Help", "" }, - { Event::Quit, "Quit", "" } + { Event::UINavPrev, "Previous object", "" }, + { Event::UINavNext, "Next object", "" }, + { Event::UITabPrev, "Previous tab", "" }, + { Event::UITabNext, "Next tab", "" }, + + { Event::UIPrevDir, "Parent directory", "" }, + { Event::ToggleFullScreen, "Toggle fullscreen", "" }, + { Event::Quit, "Quit", "" } } }; // Event groups