Skip to content

Commit

Permalink
Properly enable auto-type ui elements on entry edit page (#8752)
Browse files Browse the repository at this point in the history
Fixes #8743
  • Loading branch information
leroivi authored and droidmonkey committed Feb 18, 2023
1 parent 25fc69d commit ae55d88
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/gui/entry/EditEntryWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,7 @@ void EditEntryWidget::setupAutoType()

// clang-format off
connect(m_autoTypeUi->enableButton, SIGNAL(toggled(bool)), SLOT(updateAutoTypeEnabled()));
connect(m_autoTypeUi->customSequenceButton, SIGNAL(toggled(bool)),
m_autoTypeUi->sequenceEdit, SLOT(setEnabled(bool)));
connect(m_autoTypeUi->customSequenceButton, &QRadioButton::toggled, this, &EditEntryWidget::updateAutoTypeEnabled);
connect(m_autoTypeUi->openHelpButton, SIGNAL(clicked()), SLOT(openAutotypeHelp()));
connect(m_autoTypeUi->customWindowSequenceButton, SIGNAL(toggled(bool)),
m_autoTypeUi->windowSequenceEdit, SLOT(setEnabled(bool)));
Expand Down

0 comments on commit ae55d88

Please sign in to comment.