Partial fix for ticket #146:

- set default of the signature checkbox in ConnectFriendWizard to disabled
- set the initial option for the download directory to network wide only
- set the default of a new shared directory to network wide


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4578 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-08-28 22:54:01 +00:00
parent 44806b7581
commit 35a059c44c
3 changed files with 6 additions and 4 deletions

View file

@ -1051,7 +1051,7 @@ void ConclusionPage::initializePage() {
//set the radio button to sign the GPG key
if (detail.accept_connection && !detail.ownsign) {
//gpg key connection is already accepted, don't propose to accept it again
signGPGCheckBox->setChecked(true);
signGPGCheckBox->setChecked(false);
acceptNoSignGPGCheckBox->hide();
acceptNoSignGPGCheckBox->setChecked(false);
}
@ -1064,7 +1064,7 @@ void ConclusionPage::initializePage() {
if (!detail.accept_connection && !detail.ownsign) {
acceptNoSignGPGCheckBox->setChecked(true);
signGPGCheckBox->show();
signGPGCheckBox->setChecked(true);
signGPGCheckBox->setChecked(false);
acceptNoSignGPGCheckBox->show();
}
if (detail.accept_connection && detail.ownsign) {