mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
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.
This commit is contained in:
parent
01b49921fb
commit
0732c4bfd4
2 changed files with 1 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -90,9 +90,6 @@
|
|||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="openHelpButton">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Open Auto-Type help webpage</string>
|
||||
</property>
|
||||
|
|
|
|||
Loading…
Reference in a new issue