move comment

This commit is contained in:
Valentin Vanelslande 2018-12-29 13:15:31 -05:00
parent 57f224fc50
commit dce82fa005
1 changed files with 2 additions and 3 deletions

View File

@ -96,9 +96,6 @@ static QString AnalogToText(const Common::ParamPackage& param, const std::string
ConfigureInput::ConfigureInput(QWidget* parent)
: QWidget(parent), ui(std::make_unique<Ui::ConfigureInput>()),
timeout_timer(std::make_unique<QTimer>()), poll_timer(std::make_unique<QTimer>()) {
// If the user closes the dialog, the changes are reverted in `GMainWindow::OnConfigure()`
ui->setupUi(this);
setFocusPolicy(Qt::ClickFocus);
@ -141,6 +138,8 @@ ConfigureInput::ConfigureInput(QWidget* parent)
handleClick(button_map[button_id],
[=](const Common::ParamPackage& params) {
buttons_param[button_id] = params;
// If the user closes the dialog, the changes are reverted in
// `GMainWindow::OnConfigure()`
applyConfiguration();
Settings::SaveProfile(ui->profile->currentIndex());
},