Improve naming for slow poll and reduce options in status menu
Some checks are pending
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linux32 flags:32 name:Linux GCC 32 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linux64 flags:64 name:Linux GCC x64 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linuxarm32 flags:arm32 name:Linux GCC ARM 32 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linuxarm64 flags:arm64 name:Linux GCC ARM 64 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:macos name:macOS Apple Silicon os:macos-14]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:win32 flags:-A Win32 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 Win32 os:windows-2022]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:win64 flags:-A x64 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 x64 os:windows-2022]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:winarm64 flags:-A ARM64 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 ARM os:windows-2022]) (push) Waiting to run
CD / Create Pi Mono Setup (push) Blocked by required conditions
CD / Publishing (push) Blocked by required conditions

This commit is contained in:
Lorenzooone
2025-05-17 00:45:43 +02:00
parent bda93f035b
commit f1890244a5
3 changed files with 4 additions and 4 deletions

View File

@@ -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 = {

View File

@@ -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;

View File

@@ -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) {