Browse Source

- BUGFIX: DHT settings were not saved correctly

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
cf6a91e850
  1. 1
      Changelog
  2. 1
      src/options_imp.cpp

1
Changelog

@ -35,6 +35,7 @@
- BUGFIX: Reload torrent only when necessary (properties) - BUGFIX: Reload torrent only when necessary (properties)
- BUGFIX: qBittorrent is not exiting anymore when a dialog is closed and main window is hidden - BUGFIX: qBittorrent is not exiting anymore when a dialog is closed and main window is hidden
- BUGFIX: Search plugin update is not making the GUI freeze anymore (moved to a thread) - BUGFIX: Search plugin update is not making the GUI freeze anymore (moved to a thread)
- BUGFIX: DHT settings were not saved correctly
- COSMETIC: Redesigned torrent properties a little - COSMETIC: Redesigned torrent properties a little
- COSMETIC: Redesigned options a little - COSMETIC: Redesigned options a little
- COSMETIC: Display more logs messages concerning features - COSMETIC: Display more logs messages concerning features

1
src/options_imp.cpp

@ -268,6 +268,7 @@ void options_imp::saveOptions(){
settings.setValue("ShareRatio", getRatio()); settings.setValue("ShareRatio", getRatio());
settings.setValue("EncryptionState", getEncryptionSetting()); settings.setValue("EncryptionState", getEncryptionSetting());
settings.setValue("PeXState", !isPeXDisabled()); settings.setValue("PeXState", !isPeXDisabled());
settings.setValue("DHTPort", getDHTPort());
settings.setValue("ScanDir", getScanDir()); settings.setValue("ScanDir", getScanDir());
// End Main options // End Main options
settings.endGroup(); settings.endGroup();

Loading…
Cancel
Save