diff options
Diffstat (limited to 'playerwidget.cpp')
-rw-r--r-- | playerwidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/playerwidget.cpp b/playerwidget.cpp index 2411f01..6faae37 100644 --- a/playerwidget.cpp +++ b/playerwidget.cpp @@ -1503,6 +1503,9 @@ void PlayerWidget::previous(){ } void PlayerWidget::advance(int numSongs){ + if(mIsStream){ + return; + } mPlayer->stop(); QModelIndexList sel = mPlayListView->selectionModel()->selectedRows(); if(sel.isEmpty()){ |