From 83d59a660079b9f61055f5bf4bb19c199981c13e Mon Sep 17 00:00:00 2001 From: Nix <75538775+nixietab@users.noreply.github.com> Date: Tue, 10 Dec 2024 15:47:25 -0300 Subject: [PATCH] keyboard support added --- marroc.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/marroc.py b/marroc.py index 74a46fc..9e390ea 100644 --- a/marroc.py +++ b/marroc.py @@ -62,6 +62,20 @@ class ModrinthSearchApp(QWidget): self.setLayout(layout) + def keyPressEvent(self, event): + focus_widget = self.focusWidget() + if event.key() == Qt.Key_Down: + self.focusNextChild() # Move focus to the next widget + elif event.key() == Qt.Key_Up: + self.focusPreviousChild() # Move focus to the previous widget + elif event.key() in [Qt.Key_Return, Qt.Key_Enter]: + if isinstance(focus_widget, QPushButton): + focus_widget.click() # Trigger the button click + elif isinstance(focus_widget, QComboBox): + focus_widget.showPopup() # Show dropdown for combo box + else: + super().keyPressEvent(event) + def ensure_directories_exist(self): directories = ["marroc/mods", "marroc/resourcepacks"] for directory in directories: