mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-26 01:26:42 -05:00
Add unlock dialog on Autotype and show default Autotype sequence (#89)
* Add unlockdialog on autotype. Fix #10 * Show default autotype sequence for existing entries * NOTE: New entries/groups do not show the default autotype sequence
This commit is contained in:
parent
0657d343bf
commit
6927158daa
13 changed files with 202 additions and 11 deletions
|
|
@ -354,12 +354,11 @@ void EditEntryWidget::setForms(const Entry* entry, bool restore)
|
|||
m_autoTypeUi->enableButton->setChecked(entry->autoTypeEnabled());
|
||||
if (entry->defaultAutoTypeSequence().isEmpty()) {
|
||||
m_autoTypeUi->inheritSequenceButton->setChecked(true);
|
||||
m_autoTypeUi->sequenceEdit->setText("");
|
||||
}
|
||||
else {
|
||||
m_autoTypeUi->customSequenceButton->setChecked(true);
|
||||
m_autoTypeUi->sequenceEdit->setText(entry->defaultAutoTypeSequence());
|
||||
}
|
||||
m_autoTypeUi->sequenceEdit->setText(entry->effectiveAutoTypeSequence());
|
||||
m_autoTypeUi->windowTitleCombo->lineEdit()->clear();
|
||||
m_autoTypeUi->defaultWindowSequenceButton->setChecked(true);
|
||||
m_autoTypeUi->windowSequenceEdit->setText("");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue