Browse Source

Bugfix: Qt/Options: Restore persistent "restart required" notice

0.14
Luke Dashjr 8 years ago
parent
commit
0b4f273e9c
  1. 5
      src/qt/optionsdialog.cpp

5
src/qt/optionsdialog.cpp

@ -258,6 +258,9 @@ void OptionsDialog::showRestartWarning(bool fPersistent) @@ -258,6 +258,9 @@ void OptionsDialog::showRestartWarning(bool fPersistent)
void OptionsDialog::clearStatusLabel()
{
ui->statusLabel->clear();
if (model && model->isRestartRequired()) {
showRestartWarning(true);
}
}
void OptionsDialog::updateProxyValidationState()
@ -267,7 +270,7 @@ void OptionsDialog::updateProxyValidationState() @@ -267,7 +270,7 @@ void OptionsDialog::updateProxyValidationState()
if (pUiProxyIp->isValid() && (!ui->proxyPort->isEnabled() || ui->proxyPort->text().toInt() > 0) && (!ui->proxyPortTor->isEnabled() || ui->proxyPortTor->text().toInt() > 0))
{
setOkButtonState(otherProxyWidget->isValid()); //only enable ok button if both proxys are valid
ui->statusLabel->clear();
clearStatusLabel();
}
else
{

Loading…
Cancel
Save