Browse Source

Don't miss to enable Apply button

PR #19221.
Closes #19082.
adaptive-webui-19844
Vladimir Golovnev 1 year ago committed by GitHub
parent
commit
c90863f217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/gui/optionsdialog.cpp

3
src/gui/optionsdialog.cpp

@ -661,8 +661,9 @@ void OptionsDialog::loadDownloadsTabOptions() @@ -661,8 +661,9 @@ void OptionsDialog::loadDownloadsTabOptions()
connect(m_ui->mailNotifUsername, &QLineEdit::textChanged, this, &ThisType::enableApplyButton);
connect(m_ui->mailNotifPassword, &QLineEdit::textChanged, this, &ThisType::enableApplyButton);
connect(m_ui->autoRunBox, &QGroupBox::toggled, this, &ThisType::enableApplyButton);
connect(m_ui->groupBoxRunOnAdded, &QGroupBox::toggled, this, &ThisType::enableApplyButton);
connect(m_ui->lineEditRunOnAdded, &QLineEdit::textChanged, this, &ThisType::enableApplyButton);
connect(m_ui->groupBoxRunOnFinished, &QGroupBox::toggled, this, &ThisType::enableApplyButton);
connect(m_ui->lineEditRunOnFinished, &QLineEdit::textChanged, this, &ThisType::enableApplyButton);
connect(m_ui->autoRunConsole, &QCheckBox::toggled, this, &ThisType::enableApplyButton);
}

Loading…
Cancel
Save