From 20fb7174c10703284c486b38331b80b5da4ee924 Mon Sep 17 00:00:00 2001 From: Boris Yumankulov Date: Mon, 26 Jan 2026 17:07:22 +0500 Subject: [PATCH] fix: update virtual keyboard icons on change gamepad type Signed-off-by: Boris Yumankulov --- portprotonqt/main_window.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/portprotonqt/main_window.py b/portprotonqt/main_window.py index 41fc134..5125bbc 100644 --- a/portprotonqt/main_window.py +++ b/portprotonqt/main_window.py @@ -2433,6 +2433,9 @@ class MainWindow(QMainWindow): else: self.input_manager.gamepad_type = GamepadType.UNKNOWN self.updateControlHints() + # Update virtual keyboard icons + if hasattr(self, 'keyboard'): + self.keyboard.update_keyboard() for card in self.game_library_manager.game_card_cache.values(): card.update_badge_visibility(filter_key)