Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelfmz <fenix1905@tut.by>2022-01-23 21:47:57 +0300
committerelfmz <fenix1905@tut.by>2022-01-23 21:51:12 +0300
commit027016eb33e9adeefa3eb20767c09d326f08f0f4 (patch)
treeddcf6f62dbede4b8ae29ff7e39aafd1df7a4af03 /far2l/src/options.cpp
parenta0b3a3cd77406f2ee4a221c282af8e4647412372 (diff)
Add <Input settings> menu to configure xlat and some other stuff
Diffstat (limited to 'far2l/src/options.cpp')
-rw-r--r--far2l/src/options.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/far2l/src/options.cpp b/far2l/src/options.cpp
index 3c290e27..fdde4f2f 100644
--- a/far2l/src/options.cpp
+++ b/far2l/src/options.cpp
@@ -148,6 +148,7 @@ enum enumOptionsMenu
MENU_OPTIONS_PANELSETTINGS,
MENU_OPTIONS_INTERFACESETTINGS,
MENU_OPTIONS_LANGUAGES,
+ MENU_OPTIONS_INPUTSETTINGS,
MENU_OPTIONS_PLUGINSCONFIG,
MENU_OPTIONS_PLUGINSMANAGERSETTINGS,
MENU_OPTIONS_DIALOGSETTINGS,
@@ -280,6 +281,7 @@ void ShellOptions(int LastCommand,MOUSE_EVENT_RECORD *MouseEvent)
{MSG(MMenuPanelSettings),0,0},
{MSG(MMenuInterface),0,0},
{MSG(MMenuLanguages),0,0},
+ {MSG(MMenuInput),0,0},
{MSG(MMenuPluginsConfig),0,0},
{MSG(MMenuPluginsManagerSettings),0,0},
{MSG(MMenuDialogSettings),0,0},
@@ -584,6 +586,9 @@ void ShellOptions(int LastCommand,MOUSE_EVENT_RECORD *MouseEvent)
case MENU_OPTIONS_LANGUAGES: // Languages
LanguageSettings();
break;
+ case MENU_OPTIONS_INPUTSETTINGS: // Input settings
+ InputSettings();
+ break;
case MENU_OPTIONS_PLUGINSCONFIG: // Plugins configuration
CtrlObject->Plugins.Configure();
break;