Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.6.0 #19

Merged
merged 9 commits into from
Sep 5, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Staking Tab Fixes
  • Loading branch information
metaspartan committed Sep 5, 2017
commit cb23d24c24b1a3806dd1b61c642973c4d98a7009
9 changes: 8 additions & 1 deletion src/qt/mintingview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,16 @@ MintingView::MintingView(QWidget *parent) :
legendLayout->addWidget(oldLegend);
legendLayout->insertStretch(-1);

QLabel *label1 = new QLabel(this);
label1->setText("Staking Estimations");
label1->setAlignment(Qt::AlignLeft);
QFont font( "Arial", 16, QFont::Bold);
label1->setFont(font);
label1->setFixedWidth(250);

QLabel *mintingLabel = new QLabel(tr("Check the arrow icon at the very bottom of the wallet for more staking information."));

QLabel *mintingLabel2 = new QLabel(tr(" Display staking probability within : "));
QLabel *mintingLabel2 = new QLabel(tr(" [Display staking probability within]: "));
mintingCombo = new QComboBox();
mintingCombo->addItem(tr("10 min"), Minting10min);
mintingCombo->addItem(tr("24 hours"), Minting1day);
Expand Down