aboutsummaryrefslogtreecommitdiff
path: root/src/ui/playlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/playlist.cpp')
-rw-r--r--src/ui/playlist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/playlist.cpp b/src/ui/playlist.cpp
index 8913b58c1..b9369d2e3 100644
--- a/src/ui/playlist.cpp
+++ b/src/ui/playlist.cpp
@@ -461,14 +461,14 @@ void PlayList::setTime(qint64 time)
if (time < 0)
m_current_time->display ("--:--");
else
- m_current_time->display (formatTime (time));
+ m_current_time->display (formatTime (time/1000));
m_current_time->update();
if (m_playListModel && SoundCore::instance())
{
m_playListModel->totalLength();
QString str_length = formatTime (m_playListModel->totalLength()) +
- "/" + formatTime (SoundCore::instance()->length());
+ "/" + formatTime (SoundCore::instance()->totalTime()/1000);
m_length_totalLength->display (str_length);
m_length_totalLength->update();