mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 14:23:35 -07:00
- window can now stay maximized on exit
This commit is contained in:
parent
ecede8b53e
commit
cb08280180
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v0.9.2
|
||||||
|
- BUGFIX: Window can now stay maximized on exit
|
||||||
|
|
||||||
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
|
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
|
||||||
- BUGFIX: A lot of fixes in configure file
|
- BUGFIX: A lot of fixes in configure file
|
||||||
|
|
||||||
|
|
|
@ -816,7 +816,8 @@ void GUI::closeEvent(QCloseEvent *e){
|
||||||
}
|
}
|
||||||
if(settings.value("Options/Misc/Behaviour/ConfirmOnExit", true).toBool()){
|
if(settings.value("Options/Misc/Behaviour/ConfirmOnExit", true).toBool()){
|
||||||
show();
|
show();
|
||||||
showNormal();
|
if(!isMaximized())
|
||||||
|
showNormal();
|
||||||
if(QMessageBox::question(this,
|
if(QMessageBox::question(this,
|
||||||
tr("Are you sure you want to quit?")+" -- "+tr("qBittorrent"),
|
tr("Are you sure you want to quit?")+" -- "+tr("qBittorrent"),
|
||||||
tr("Are you sure you want to quit qBittorrent?"),
|
tr("Are you sure you want to quit qBittorrent?"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue