diff --git a/picodulce.py b/picodulce.py index 790a797..9058f0a 100644 --- a/picodulce.py +++ b/picodulce.py @@ -225,7 +225,6 @@ class PicomcVersionSelector(QWidget): # Create play button for installed versions self.play_button = QPushButton('Play') - self.play_button.setFocusPolicy(Qt.NoFocus) # Set focus policy to prevent highlighting self.play_button.clicked.connect(self.play_instance) highlight_color = self.palette().color(QPalette.Highlight) self.play_button.setStyleSheet(f"background-color: {highlight_color.name()}; color: white;") @@ -1704,4 +1703,4 @@ if __name__ == '__main__': app.setWindowIcon(QIcon('launcher_icon.ico')) # Set regular icon window = PicomcVersionSelector() window.show() - sys.exit(app.exec_()) + sys.exit(app.exec_()) \ No newline at end of file