Browse Source

Entropy tooltip

duke
Aditya Kulkarni 5 years ago
parent
commit
21de524170
  1. 4
      ui/src/mainwindow.cpp
  2. 2
      ui/src/mainwindow.ui

4
ui/src/mainwindow.cpp

@ -158,6 +158,10 @@ MainWindow::MainWindow(QWidget *parent) :
ui->txttaddrs->setValidator(intValidator);
ui->txtzaddrs->setValidator(intValidator);
QString entropyTooltip = tr("Please type in random characters to use as entropy, which will be mixed in with the system's entropy to generate random numbers.");
ui->txtEntropy->setToolTip(entropyTooltip);
ui->lblEntropy->setToolTip(entropyTooltip);
// Wire up the generate button
QObject::connect(ui->btnGenerate, &QPushButton::clicked, [=]() {
this->populateWallets();

2
ui/src/mainwindow.ui

@ -58,7 +58,7 @@
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="1" column="0">
<widget class="QLabel" name="label_3">
<widget class="QLabel" name="lblEntropy">
<property name="text">
<string>Additional Entropy</string>
</property>

Loading…
Cancel
Save