-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp index cc1a608..878cd4a 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.cpp +++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp @@ -101,6 +101,7 @@ int XineControl::currentTime() { // todo: jede sekunde überprüfen m_currentTime = libXine->currentTime(); return m_currentTime; + QTimer::singleShot( 1000, this, SLOT( currentTime() ) ); } void XineControl::length() { @@ -114,6 +115,7 @@ long XineControl::position() { mediaPlayerState->setPosition( m_position ); long emitPos = (long)m_position; emit positionChanged( emitPos ); + // needs to be stopped the media is stopped QTimer::singleShot( 1000, this, SLOT( position() ) ); qDebug("POSITION : " + m_position); return m_position; |