Put elapsed/total time below Preview button

This commit is contained in:
Keith Edmunds 2023-07-09 15:40:56 +01:00
parent 722043d049
commit fbc780b579

View File

@ -1759,7 +1759,11 @@ class Window(QMainWindow, Ui_MainWindow):
time_to_end = (self.current_track.duration - playtime)
# Elapsed time
self.label_elapsed_timer.setText(helpers.ms_to_mmss(playtime))
self.label_elapsed_timer.setText(
helpers.ms_to_mmss(playtime)
+ " / "
+ helpers.ms_to_mmss(self.current_track.duration)
)
# Time to fade
self.label_fade_timer.setText(helpers.ms_to_mmss(time_to_fade))