mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
update connect friend wizard for realease
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2217 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
48cc8ffb19
commit
bf82892bb2
@ -75,7 +75,11 @@ ConnectFriendWizard::ConnectFriendWizard(QWidget *parent)
|
|||||||
setPage(Page_ErrorMessage, new ErrorMessagePage);
|
setPage(Page_ErrorMessage, new ErrorMessagePage);
|
||||||
setPage(Page_Conclusion, new ConclusionPage);
|
setPage(Page_Conclusion, new ConclusionPage);
|
||||||
|
|
||||||
|
#ifndef RS_RELEASE_VERSION
|
||||||
setStartId(Page_Intro);
|
setStartId(Page_Intro);
|
||||||
|
#else
|
||||||
|
setStartId(Page_Text);
|
||||||
|
#endif
|
||||||
|
|
||||||
// this define comes from Qt example. I don't have mac, so it wasn't tested
|
// this define comes from Qt example. I don't have mac, so it wasn't tested
|
||||||
#ifndef Q_WS_MAC
|
#ifndef Q_WS_MAC
|
||||||
@ -166,8 +170,10 @@ IntroPage::IntroPage(QWidget *parent)
|
|||||||
|
|
||||||
QVBoxLayout *layout = new QVBoxLayout;
|
QVBoxLayout *layout = new QVBoxLayout;
|
||||||
layout->addWidget(textRadioButton);
|
layout->addWidget(textRadioButton);
|
||||||
|
#ifndef RS_RELEASE_VERSION
|
||||||
layout->addWidget(certRadioButton);
|
layout->addWidget(certRadioButton);
|
||||||
layout->addWidget(foffRadioButton);
|
layout->addWidget(foffRadioButton);
|
||||||
|
#endif
|
||||||
setLayout(layout);
|
setLayout(layout);
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
@ -203,7 +209,7 @@ TextPage::TextPage(QWidget *parent)
|
|||||||
userCertEdit->setText(QString::fromStdString(invite));
|
userCertEdit->setText(QString::fromStdString(invite));
|
||||||
userCertEdit->setReadOnly(true);
|
userCertEdit->setReadOnly(true);
|
||||||
userCertEdit->setMinimumHeight(200);
|
userCertEdit->setMinimumHeight(200);
|
||||||
userCertEdit->setMinimumWidth(450);
|
userCertEdit->setMinimumWidth(530);
|
||||||
QFont font;
|
QFont font;
|
||||||
font.setPointSize(10);
|
font.setPointSize(10);
|
||||||
font.setBold(false);
|
font.setBold(false);
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 588 B After Width: | Height: | Size: 652 B |
Loading…
Reference in New Issue
Block a user