mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-22 06:09:09 -04:00
removed/hid the certificate and ID from settings since it duplicates functionality of HomePage with different options
This commit is contained in:
parent
c3c171125d
commit
33800e9cb9
3 changed files with 18 additions and 23 deletions
|
@ -93,12 +93,12 @@ HomePage::HomePage(QWidget *parent) :
|
|||
menu->addAction(mIncludeIPsAct);
|
||||
}
|
||||
|
||||
QAction *useOldFormatAct = new QAction(QIcon(), tr("Use old certificate format"),this);
|
||||
useOldFormatAct->setToolTip(tr("Displays the certificate format used up to version 0.6.5\nOld Retroshare nodes will not understand the\nnew short format"));
|
||||
connect(useOldFormatAct, SIGNAL(triggered()), this, SLOT(updateOwnCert()));
|
||||
useOldFormatAct->setCheckable(true);
|
||||
useOldFormatAct->setChecked(false);
|
||||
menu->addAction(useOldFormatAct);
|
||||
mUseOldFormatAct = new QAction(QIcon(), tr("Use old certificate format"),this);
|
||||
mUseOldFormatAct->setToolTip(tr("Displays the certificate format used up to version 0.6.5\nOld Retroshare nodes will not understand the\nnew short format"));
|
||||
connect(mUseOldFormatAct, SIGNAL(triggered()), this, SLOT(updateOwnCert()));
|
||||
mUseOldFormatAct->setCheckable(true);
|
||||
mUseOldFormatAct->setChecked(false);
|
||||
menu->addAction(mUseOldFormatAct);
|
||||
|
||||
ui->shareButton->setMenu(menu);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue