mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-08 00:55:13 -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
2 changed files with 6 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue