- Fixed proxy auth disable problem when disabling proxy

This commit is contained in:
Christophe Dumez
2007-11-22 21:33:31 +00:00
parent b1d8fb0f11
commit efe0dbabaa
2 changed files with 2 additions and 0 deletions

1
TODO
View File

@@ -66,3 +66,4 @@ rc8->rc9 changelog:
- BUGFIX: Fixed possible overflow in ETA calculation - BUGFIX: Fixed possible overflow in ETA calculation
- BUGFIX: title bar is now reset when "Display speed in title" is disabled - BUGFIX: title bar is now reset when "Display speed in title" is disabled
- BUGFIX: Fixed HTTP_PW and SOCKS5_PW in proxy combobox - BUGFIX: Fixed HTTP_PW and SOCKS5_PW in proxy combobox
- BUGFIX: Fixed proxy auth disable problem when disabling proxy

View File

@@ -871,6 +871,7 @@ void options_imp::enableProxy(int index){
textProxyIP->setEnabled(false); textProxyIP->setEnabled(false);
lblProxyPort->setEnabled(false); lblProxyPort->setEnabled(false);
spinProxyPort->setEnabled(false); spinProxyPort->setEnabled(false);
checkProxyAuth->setChecked(false);
checkProxyAuth->setEnabled(false); checkProxyAuth->setEnabled(false);
ProxyConnecsBox->setEnabled(false); ProxyConnecsBox->setEnabled(false);
} }