From f1890244a5f9147238d98f39c67ae0e4e6574331 Mon Sep 17 00:00:00 2001 From: Lorenzooone Date: Sat, 17 May 2025 00:45:43 +0200 Subject: [PATCH] Improve naming for slow poll and reduce options in status menu --- source/Menus/InputMenu.cpp | 2 +- source/Menus/StatusMenu.cpp | 4 ++-- source/WindowScreen_Menu.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Menus/InputMenu.cpp b/source/Menus/InputMenu.cpp index 5e542d4..f77ce61 100644 --- a/source/Menus/InputMenu.cpp +++ b/source/Menus/InputMenu.cpp @@ -25,7 +25,7 @@ static const InputMenuOptionInfo input_menu_toggle_mouse_option = { .out_action = INPUT_MENU_TOGGLE_MOUSE}; static const InputMenuOptionInfo input_menu_toggle_fast_poll_option = { -.base_name = "Disable Slow Poll", .false_name = "Enable Slow Poll", +.base_name = "Speed up Input checks", .false_name = "Slow down Input checks", .out_action = INPUT_MENU_TOGGLE_FAST_POLL}; static const InputMenuOptionInfo input_menu_shortcut_option = { diff --git a/source/Menus/StatusMenu.cpp b/source/Menus/StatusMenu.cpp index a693c05..0faade9 100755 --- a/source/Menus/StatusMenu.cpp +++ b/source/Menus/StatusMenu.cpp @@ -53,7 +53,7 @@ static const StatusMenuOptionInfo* pollable_options[] = { &status_usb_connection_option, &status_url_option, &status_fps_in_option, -&status_fps_poll_option, +//&status_fps_poll_option, &status_fps_draw_option, }; @@ -70,7 +70,7 @@ StatusMenu::~StatusMenu() { } void StatusMenu::class_setup() { - this->num_options_per_screen = 6; + this->num_options_per_screen = 5; this->min_elements_text_scaling_factor = num_options_per_screen + 1; this->width_factor_menu = 16; this->width_divisor_menu = 9; diff --git a/source/WindowScreen_Menu.cpp b/source/WindowScreen_Menu.cpp index 70c0114..39c47dd 100755 --- a/source/WindowScreen_Menu.cpp +++ b/source/WindowScreen_Menu.cpp @@ -198,7 +198,7 @@ void WindowScreen::blur_change() { void WindowScreen::fast_poll_change() { this->shared_data->input_data.fast_poll = !this->shared_data->input_data.fast_poll; - this->print_notification_on_off("Slow Poll", this->shared_data->input_data.fast_poll); + this->print_notification_on_off("Slow Input checks", this->shared_data->input_data.fast_poll); } void WindowScreen::is_nitro_capture_type_change(bool positive) {