mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-28 13:02:38 +02:00
Bugfix: GUI/Options: Correct maxuploadtarget label to use MiB
This commit is contained in:
parent
55dc9e1847
commit
03317ace84
@ -708,7 +708,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="maxuploadtargetUnitLabel">
|
||||
<property name="text">
|
||||
<string>MB per day</string>
|
||||
<string>MiB per day</string>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::PlainText</enum>
|
||||
|
@ -133,7 +133,7 @@ OptionsDialog::OptionsDialog(QWidget* parent, bool enableWallet)
|
||||
connect(ui->connectSocksTor, &QPushButton::toggled, ui->proxyPortTor, &QWidget::setEnabled);
|
||||
connect(ui->connectSocksTor, &QPushButton::toggled, this, &OptionsDialog::updateProxyValidationState);
|
||||
|
||||
ui->maxuploadtarget->setMinimum(144 /* MB/day */);
|
||||
ui->maxuploadtarget->setMinimum(144 /* MiB/day */);
|
||||
ui->maxuploadtarget->setMaximum(std::numeric_limits<int>::max());
|
||||
connect(ui->maxuploadtargetCheckbox, SIGNAL(toggled(bool)), ui->maxuploadtarget, SLOT(setEnabled(bool)));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user