From 0732c4bfd49c6eaba883f6afe0a76956c2cd5c92 Mon Sep 17 00:00:00 2001 From: Anton Bobov Date: Sun, 11 Jan 2026 16:25:22 +0500 Subject: [PATCH] fix(gui): enable Auto-Type help button when feature is active The 'openHelpButton' in the Auto-Type configuration widget is now enabled whenever the main 'Enable Auto-Type for this entry' checkbox is checked, regardless of whether a custom sequence is defined. Previously, the help button's state depended on the custom sequence being enabled, which was inconsistent and confusing. The help is now available whenever the main Auto-Type feature is enabled, providing assistance for both default and window-specific sequences. --- src/gui/entry/EditEntryWidget.cpp | 2 +- src/gui/entry/EditEntryWidgetAutoType.ui | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/gui/entry/EditEntryWidget.cpp b/src/gui/entry/EditEntryWidget.cpp index 4c98b099b..387be45e2 100644 --- a/src/gui/entry/EditEntryWidget.cpp +++ b/src/gui/entry/EditEntryWidget.cpp @@ -1573,7 +1573,7 @@ void EditEntryWidget::updateAutoTypeEnabled() m_autoTypeUi->inheritSequenceButton->setEnabled(!m_history && autoTypeEnabled); m_autoTypeUi->customSequenceButton->setEnabled(!m_history && autoTypeEnabled); m_autoTypeUi->sequenceEdit->setEnabled(autoTypeEnabled && m_autoTypeUi->customSequenceButton->isChecked()); - m_autoTypeUi->openHelpButton->setEnabled(autoTypeEnabled && m_autoTypeUi->customSequenceButton->isChecked()); + m_autoTypeUi->openHelpButton->setEnabled(autoTypeEnabled); m_autoTypeUi->assocView->setEnabled(autoTypeEnabled); m_autoTypeUi->assocAddButton->setEnabled(!m_history); diff --git a/src/gui/entry/EditEntryWidgetAutoType.ui b/src/gui/entry/EditEntryWidgetAutoType.ui index 7bda4c38e..be76abfa0 100644 --- a/src/gui/entry/EditEntryWidgetAutoType.ui +++ b/src/gui/entry/EditEntryWidgetAutoType.ui @@ -90,9 +90,6 @@ - - false - Open Auto-Type help webpage