Browse Source

- Window can now stay maximized on exit

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
81d05a67b3
  1. 1
      Changelog
  2. 2
      TODO
  3. 1
      src/GUI.cpp

1
Changelog

@ -7,6 +7,7 @@ @@ -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

@ -31,7 +31,7 @@ @@ -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

1
src/GUI.cpp

@ -675,6 +675,7 @@ void GUI::closeEvent(QCloseEvent *e){ @@ -675,6 +675,7 @@ void GUI::closeEvent(QCloseEvent *e){
}
if(settings.value("Options/Misc/Behaviour/ConfirmOnExit", true).toBool() && nbTorrents != 0){
show();
if(!isMaximized())
showNormal();
if(QMessageBox::question(this,
tr("Are you sure you want to quit?")+" -- "+tr("qBittorrent"),

Loading…
Cancel
Save