Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'keepassxc-browser/background/page.js')
-rwxr-xr-xkeepassxc-browser/background/page.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/keepassxc-browser/background/page.js b/keepassxc-browser/background/page.js
index 08d6f6c..efe5f8d 100755
--- a/keepassxc-browser/background/page.js
+++ b/keepassxc-browser/background/page.js
@@ -10,6 +10,7 @@ const defaultSettings = {
autoRetrieveCredentials: true,
showNotifications: true,
showLoginNotifications: true,
+ showLoginFormIcon: true,
saveDomainOnly: true,
autoReconnect: false,
defaultGroup: '',
@@ -57,6 +58,9 @@ page.initSettings = async function() {
if (!('showLoginNotifications' in page.settings)) {
page.settings.showLoginNotifications = defaultSettings.showLoginNotifications;
}
+ if (!('showLoginFormIcon' in page.settings)) {
+ page.settings.showLoginFormIcon = defaultSettings.showLoginFormIcon;
+ }
if (!('saveDomainOnly' in page.settings)) {
page.settings.saveDomainOnly = defaultSettings.saveDomainOnly;
}