Put elapsed/total time below Preview button
This commit is contained in:
parent
722043d049
commit
fbc780b579
@ -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))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user