Hardcoded some shortcuts.

This commit is contained in:
The Wobbler 2025-04-06 18:45:20 +02:00
parent 3f6b40e5fe
commit 4cd6482571
2 changed files with 9 additions and 2 deletions

View file

@ -18,14 +18,18 @@ class TrackControl(QToolBar):
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaSkipBackward)
self.previous_button = self.addAction(icon, "Previous")
self.previous_button.setShortcut("Shift+Left")
self.toggle_play_button = self.addAction(self.play_icon, "Play/Pause")
self.toggle_play_button.setShortcut("Space")
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaPlaybackStop)
self.stop_button = self.addAction(icon, "Stop")
self.stop_button.setShortcut("Shift+S")
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaSkipForward)
self.next_button = self.addAction(icon, "Next")
self.next_button.setShortcut("Shift+Right")
self.progress_indicator = QLabel("0:00")
self.addWidget(self.progress_indicator)