mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-09-20 04:44:43 -04:00
Properly enable auto-type ui elements on entry edit page (#8752)
Fixes #8743
This commit is contained in:
parent
52af8a5e2a
commit
2c256023a9
1 changed files with 1 additions and 2 deletions
|
@ -232,8 +232,7 @@ void EditEntryWidget::setupAutoType()
|
||||||
|
|
||||||
// clang-format off
|
// clang-format off
|
||||||
connect(m_autoTypeUi->enableButton, SIGNAL(toggled(bool)), SLOT(updateAutoTypeEnabled()));
|
connect(m_autoTypeUi->enableButton, SIGNAL(toggled(bool)), SLOT(updateAutoTypeEnabled()));
|
||||||
connect(m_autoTypeUi->customSequenceButton, SIGNAL(toggled(bool)),
|
connect(m_autoTypeUi->customSequenceButton, &QRadioButton::toggled, this, &EditEntryWidget::updateAutoTypeEnabled);
|
||||||
m_autoTypeUi->sequenceEdit, SLOT(setEnabled(bool)));
|
|
||||||
connect(m_autoTypeUi->openHelpButton, SIGNAL(clicked()), SLOT(openAutotypeHelp()));
|
connect(m_autoTypeUi->openHelpButton, SIGNAL(clicked()), SLOT(openAutotypeHelp()));
|
||||||
connect(m_autoTypeUi->customWindowSequenceButton, SIGNAL(toggled(bool)),
|
connect(m_autoTypeUi->customWindowSequenceButton, SIGNAL(toggled(bool)),
|
||||||
m_autoTypeUi->windowSequenceEdit, SLOT(setEnabled(bool)));
|
m_autoTypeUi->windowSequenceEdit, SLOT(setEnabled(bool)));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue