mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 19:42:46 +01:00
Merge #9755: Bugfix: Qt/Options: Restore persistent "restart required" notice
0b4f273
Bugfix: Qt/Options: Restore persistent "restart required" notice (Luke Dashjr)
This commit is contained in:
commit
a441db01b5
@ -277,6 +277,9 @@ void OptionsDialog::showRestartWarning(bool fPersistent)
|
||||
void OptionsDialog::clearStatusLabel()
|
||||
{
|
||||
ui->statusLabel->clear();
|
||||
if (model && model->isRestartRequired()) {
|
||||
showRestartWarning(true);
|
||||
}
|
||||
}
|
||||
|
||||
void OptionsDialog::updateProxyValidationState()
|
||||
@ -286,7 +289,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…
Reference in New Issue
Block a user