mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1974 from keepassxreboot/fix/fill_combination_with_autocomplete_menu_disabled
Fill whole combination when Autocomplete Menu is disabled
This commit is contained in:
commit
af751a01cc
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ kpxcFill.fillInFromActiveElement = async function(passOnly = false) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (kpxc.combinations.length > 0 && kpxc.settings.autoCompleteUsernames) {
|
||||
if (kpxc.combinations.length > 0) {
|
||||
if (await kpxcFill.fillFromCombination(passOnly)) {
|
||||
// Combination found and filled
|
||||
return;
|
||||
|
|
@ -64,7 +64,7 @@ kpxcFill.fillFromCombination = async function(passOnly) {
|
|||
// Set focus to the input field
|
||||
field.focus();
|
||||
|
||||
if (kpxc.credentials.length > 1) {
|
||||
if (kpxc.credentials.length > 1 && kpxc.settings.autoCompleteUsernames) {
|
||||
// More than one credential -> show autocomplete list
|
||||
kpxcUserAutocomplete.showList(field);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue