Got shitty basic features working.

This commit is contained in:
The Wobbler 2024-12-21 19:00:06 +01:00
parent ce254c8b54
commit 45d97f5aeb
6 changed files with 97 additions and 29 deletions

View file

@ -24,8 +24,8 @@ class TrackControl(QToolBar):
self.current_position_indicator = QLabel("0:00")
self.addWidget(self.current_position_indicator)
self.play_position_slider = QSlider(Qt.Orientation.Horizontal, self)
self.addWidget(self.play_position_slider)
self.track_progress_slider = QSlider(Qt.Orientation.Horizontal, self)
self.addWidget(self.track_progress_slider)
self.track_length_indicator = QLabel("0:00")
self.addWidget(self.track_length_indicator)