mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-15 18:58:55 +01:00
Corrected regression introduced in r2826: exit application when nothing is playing
This commit is contained in:
parent
375abfd04e
commit
0f1a1cc332
@ -1755,9 +1755,11 @@ bool MainWindow::winEvent(MSG* msg, long*) {
|
||||
void MainWindow::Exit() {
|
||||
// To shut down the application when fadeout will be finished
|
||||
connect(player_->engine(), SIGNAL(FadeoutFinishedSignal()), qApp, SLOT(quit()));
|
||||
|
||||
if(player_->GetState() == Engine::Playing) {
|
||||
player_->Stop();
|
||||
|
||||
hide();
|
||||
tray_icon_->SetVisible(false);
|
||||
} else {
|
||||
qApp->quit();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user