mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
- Window can now stay maximized on exit
This commit is contained in:
parent
a0743c0713
commit
81d05a67b3
3 changed files with 4 additions and 2 deletions
|
@ -7,6 +7,7 @@
|
|||
- FEATURE: Allow the user to disable system tray integration
|
||||
- FEATURE: Search engine is now using one thread per website for faster results
|
||||
- FEATURE: Ask for exit confirmation only if download list is not empty
|
||||
- BUGFIX: Window can now stay maximized on exit
|
||||
- COSMETIC: Redesigned torrent properties a little
|
||||
- COSMETIC: Redesigned options a little
|
||||
- COSMETIC: Display more logs messages concerning features
|
||||
|
|
2
TODO
2
TODO
|
@ -31,7 +31,7 @@
|
|||
|
||||
// in v0.10 (partial) - WIP
|
||||
- Download from RSS feeds (WIP by gtsoul, clean & finish rss.h, add a tab in mainWindow, debug)
|
||||
- Move finished torrent to another tab and keep on seeding them even after restart (finish & debug)
|
||||
- Move finished torrent to another tab and keep on seeding them even after restart (debug)
|
||||
- Improve torrent creation dialog (look & features) :
|
||||
- Add Private combobox (allow to share on DHT or not)
|
||||
- Use a QListWidget to allow multiple input paths
|
||||
|
|
|
@ -675,7 +675,8 @@ void GUI::closeEvent(QCloseEvent *e){
|
|||
}
|
||||
if(settings.value("Options/Misc/Behaviour/ConfirmOnExit", true).toBool() && nbTorrents != 0){
|
||||
show();
|
||||
showNormal();
|
||||
if(!isMaximized())
|
||||
showNormal();
|
||||
if(QMessageBox::question(this,
|
||||
tr("Are you sure you want to quit?")+" -- "+tr("qBittorrent"),
|
||||
tr("The download list is not empty.\nAre you sure you want to quit qBittorrent?"),
|
||||
|
|
Loading…
Reference in a new issue