From 5dd7a66ed0bed77075c911aad4afdc975901ebe9 Mon Sep 17 00:00:00 2001 From: varjolintu Date: Wed, 30 Aug 2023 15:29:02 +0300 Subject: [PATCH] Fill whole combination when Autocomplete Menu is disabled --- keepassxc-browser/content/fill.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keepassxc-browser/content/fill.js b/keepassxc-browser/content/fill.js index 2033442..f9e3ac9 100644 --- a/keepassxc-browser/content/fill.js +++ b/keepassxc-browser/content/fill.js @@ -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 {