From c90863f217b75bd3307441dcb749849090f22083 Mon Sep 17 00:00:00 2001 From: Vladimir Golovnev Date: Sun, 25 Jun 2023 12:44:33 +0300 Subject: [PATCH] Don't miss to enable Apply button PR #19221. Closes #19082. --- src/gui/optionsdialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/optionsdialog.cpp b/src/gui/optionsdialog.cpp index 6d0f1d74d..29cfd81ae 100644 --- a/src/gui/optionsdialog.cpp +++ b/src/gui/optionsdialog.cpp @@ -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); }