Browse Source

- Should fix logout cancelation on KDE

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
7db2ffc09f
  1. 3
      src/GUI.cpp

3
src/GUI.cpp

@ -670,7 +670,8 @@ void GUI::closeEvent(QCloseEvent *e) { @@ -670,7 +670,8 @@ void GUI::closeEvent(QCloseEvent *e) {
bool goToSystrayOnExit = settings.value(QString::fromUtf8("Preferences/General/CloseToTray"), false).toBool();
if(!force_exit && systrayIntegration && goToSystrayOnExit && !this->isHidden()) {
hide();
e->ignore();
//e->ignore();
e->accept();
return;
}
if(settings.value(QString::fromUtf8("Preferences/General/ExitConfirm"), true).toBool() && downloadingTorrentTab->getNbTorrentsInList()) {

Loading…
Cancel
Save