From 6a01cf397b2ab39ee8f29ecc68abbc773a6f6ff2 Mon Sep 17 00:00:00 2001 From: skymike03 Date: Tue, 15 Jul 2025 13:14:36 +0200 Subject: [PATCH] v1.9.6.1 - Correction filtre sur pc --- display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display.py b/display.py index e30190b..dff661e 100644 --- a/display.py +++ b/display.py @@ -831,7 +831,7 @@ def draw_controls(screen, menu_state): start_button = get_control_display('start', 'START') history_button = get_control_display('history', 'H') filter_button = get_control_display('filter', 'F') - control_text = f"RGSX v{config.app_version} - {start_button} : Options - {history_button}: Historique - {filter_button} : Filtrer (bug)" + control_text = f"RGSX v{config.app_version} - {start_button} : Options - {history_button}: Historique - {filter_button} : Filtrer" max_width = config.screen_width - 40 wrapped_controls = wrap_text(control_text, config.small_font, max_width) line_height = config.small_font.get_height() + 5