Skip to content

Commit

Permalink
Fixed a bug with the scaling slider not triggering the 'showRestartWa…
Browse files Browse the repository at this point in the history
…rning'
  • Loading branch information
mxaddict committed Feb 20, 2020
1 parent 553c46b commit b49e758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/optionsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void OptionsDialog::setModel(OptionsModel *model)
/* Display */
connect(ui->lang, SIGNAL(valueChanged()), this, SLOT(showRestartWarning()));
connect(ui->theme, SIGNAL(valueChanged()), this, SLOT(showRestartWarning()));
connect(ui->scaling, SIGNAL(valueChanged()), this, SLOT(showRestartWarning()));
connect(ui->scaling, SIGNAL(valueChanged(int)), this, SLOT(showRestartWarning()));
connect(ui->thirdPartyTxUrls, SIGNAL(textChanged(const QString &)), this, SLOT(showRestartWarning()));
}

Expand Down

0 comments on commit b49e758

Please sign in to comment.