mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
disabled auto-login for non windows systems.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1251 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c82c7eea26
commit
529b0d7f04
@ -39,6 +39,8 @@ GeneralDialog::GeneralDialog(QWidget *parent)
|
||||
/* Hide platform specific features */
|
||||
#ifndef Q_WS_WIN
|
||||
ui.chkRunRetroshareAtSystemStartup->setVisible(false);
|
||||
ui.autologincheckBox->setEnabled(false) ;
|
||||
ui.autologincheckBox->setChecked(false) ;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -84,7 +84,10 @@ StartDialog::StartDialog(QWidget *parent, Qt::WFlags flags)
|
||||
ui.loadButton -> setEnabled(false);
|
||||
//ui.genName->setFocus(Qt::OtherFocusReason);
|
||||
}
|
||||
|
||||
#ifndef Q_WS_WIN
|
||||
ui.autoBox->setChecked(false) ;
|
||||
ui.autoBox->setEnabled(false) ;
|
||||
#endif
|
||||
//ui.genFriend -> setText("<None Selected>");
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user