feat: set focus on first item of context menu

Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
This commit is contained in:
2025-07-25 11:39:40 +05:00
parent 11d44f091d
commit edaeca4f11

View File

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