-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp index cf7dcb2..eba837e 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.cpp +++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp | |||
@@ -98,5 +98,9 @@ void XineControl::stop( bool isSet ) { | |||
98 | */ | 98 | */ |
99 | void XineControl::pause( bool isSet) { | 99 | void XineControl::pause( bool isSet) { |
100 | libXine->pause(); | 100 | if (isSet) { |
101 | libXine->pause(); | ||
102 | } else { | ||
103 | libXine->play( m_fileName, 0, m_currentTime); | ||
104 | } | ||
101 | } | 105 | } |
102 | 106 | ||