diff --git a/portprotonqt/context_menu_manager.py b/portprotonqt/context_menu_manager.py index bb92aa9..9e7aa6d 100644 --- a/portprotonqt/context_menu_manager.py +++ b/portprotonqt/context_menu_manager.py @@ -280,6 +280,11 @@ class ContextMenuManager: ) ) + # Устанавливаем фокус на первый элемент меню + actions = menu.actions() + if actions: + menu.setActiveAction(actions[0]) + menu.exec(game_card.mapToGlobal(pos)) def _launch_game(self, game_card):