mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-23 06:35:24 -07:00
Fix tracker extension setting
This commit is contained in:
parent
2e3c066bce
commit
1923006677
2 changed files with 3 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
||||||
- BUGFIX: Fix tracker exchange advanced setting
|
- BUGFIX: Fix tracker exchange advanced setting
|
||||||
- BUGFIX: Fix Proxy authentication settings
|
- BUGFIX: Fix Proxy authentication settings
|
||||||
- BUGFIX: Fix possible status filters widget height problem
|
- BUGFIX: Fix possible status filters widget height problem
|
||||||
|
- BUGFIX: Fix tracker extension setting
|
||||||
- FEATURE: Show tracker tier (order) in tracker list
|
- FEATURE: Show tracker tier (order) in tracker list
|
||||||
|
|
||||||
* Sun Jun 05 2011 - Christophe Dumez <chris@qbittorrent.org> - v2.8.1
|
* Sun Jun 05 2011 - Christophe Dumez <chris@qbittorrent.org> - v2.8.1
|
||||||
|
|
|
@ -99,7 +99,7 @@ public slots:
|
||||||
// Program notification
|
// Program notification
|
||||||
pref.useProgramNotification(cb_program_notifications.isChecked());
|
pref.useProgramNotification(cb_program_notifications.isChecked());
|
||||||
// Tracker
|
// Tracker
|
||||||
pref.setTrackerExchangeEnabled(cb_tracker_status.isChecked());
|
pref.setTrackerEnabled(cb_tracker_status.isChecked());
|
||||||
pref.setTrackerPort(spin_tracker_port.value());
|
pref.setTrackerPort(spin_tracker_port.value());
|
||||||
#if defined(Q_WS_WIN) || defined(Q_WS_MAC)
|
#if defined(Q_WS_WIN) || defined(Q_WS_MAC)
|
||||||
pref.setUpdateCheckEnabled(cb_update_check.isChecked());
|
pref.setUpdateCheckEnabled(cb_update_check.isChecked());
|
||||||
|
@ -110,7 +110,7 @@ public slots:
|
||||||
#endif
|
#endif
|
||||||
pref.setConfirmTorrentDeletion(cb_confirm_torrent_deletion.isChecked());
|
pref.setConfirmTorrentDeletion(cb_confirm_torrent_deletion.isChecked());
|
||||||
// Tracker exchange
|
// Tracker exchange
|
||||||
pref.setTrackerEnabled(cb_enable_tracker_ext.isChecked());
|
pref.setTrackerExchangeEnabled(cb_enable_tracker_ext.isChecked());
|
||||||
}
|
}
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue