diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-10-25 19:44:45 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-10-25 19:44:45 +0000 |
| commit | f36b2f8d5c85c4c2a32a1dd884c57735f50e3b87 (patch) | |
| tree | 734e6dddb8e67afba4554fdcea18d0096c8f64b2 /src | |
| parent | 45c494330f4c597acc56dce001207ca6a895668d (diff) | |
| download | qmmp-f36b2f8d5c85c4c2a32a1dd884c57735f50e3b87.tar.gz qmmp-f36b2f8d5c85c4c2a32a1dd884c57735f50e3b87.tar.bz2 qmmp-f36b2f8d5c85c4c2a32a1dd884c57735f50e3b87.zip | |
fixed regression
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@600 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/mainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index f12dbd216..a306c74aa 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -218,7 +218,6 @@ void MainWindow::play() } } } - qApp->processEvents(); } void MainWindow::replay() @@ -269,6 +268,7 @@ void MainWindow::next() } else if (!m_playListModel->next()) { + stop(); display->hideTimeDisplay(); return; } @@ -286,6 +286,7 @@ void MainWindow::previous() { if (!m_playListModel->previous()) { + stop(); display->hideTimeDisplay(); return; } |
