mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
- u can use real keyboard on OSK (when searching for e.g.) - add hack for "Swap OK/Cancel buttons in menu" when using OSK - using "Unified menu controls" for keystrokes so will behave the same as controller which is to expect refactor commits log
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 341aedc63a28be707c029d77df5b9b0adbb690f8 Mon Sep 17 00:00:00 2001
|
|
From: Apaczer <94932128+Apaczer@users.noreply.github.com>
|
|
Date: Wed, 30 Apr 2025 23:04:15 +0200
|
|
Subject: [PATCH] configuration: set active "Unified Menu Controls"
|
|
|
|
---
|
|
configuration.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/configuration.c b/configuration.c
|
|
index 84ab3480fc..c17aabf89b 100644
|
|
--- a/configuration.c
|
|
+++ b/configuration.c
|
|
@@ -1917,7 +1917,11 @@ static struct config_bool_setting *populate_settings_bool(
|
|
#endif
|
|
|
|
#ifdef HAVE_MENU
|
|
+#ifdef MIYOO
|
|
+ SETTING_BOOL("menu_unified_controls", &settings->bools.menu_unified_controls, true, true, false);
|
|
+#else
|
|
SETTING_BOOL("menu_unified_controls", &settings->bools.menu_unified_controls, true, false, false);
|
|
+#endif
|
|
SETTING_BOOL("menu_disable_info_button", &settings->bools.menu_disable_info_button, true, false, false);
|
|
SETTING_BOOL("menu_disable_search_button", &settings->bools.menu_disable_search_button, true, false, false);
|
|
SETTING_BOOL("menu_disable_left_analog", &settings->bools.menu_disable_left_analog, true, false, false);
|
|
--
|
|
2.45.2.windows.1
|
|
|