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

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorBernhard Berg <repolus@protonmail.com>2020-08-08 19:57:00 +0300
committerJonathan White <support@dmapps.us>2020-12-11 08:15:24 +0300
commitde44764efa42fa08d7191d08d07a8f16f7b33380 (patch)
treebf464e0103590fc10cfc59b1722ebc40653ea52c /src/core
parentc9e7ffadadea8a913bef4571dd5865405db2e075 (diff)
Add "move to recycle bin without confirmation" setting
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Config.cpp1
-rw-r--r--src/core/Config.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/Config.cpp b/src/core/Config.cpp
index ce5754428..8b2b16cf1 100644
--- a/src/core/Config.cpp
+++ b/src/core/Config.cpp
@@ -138,6 +138,7 @@ static const QHash<Config::ConfigKey, ConfigDirective> configStrings = {
{Config::Security_ResetTouchId, {QS("Security/ResetTouchId"), Roaming, false}},
{Config::Security_ResetTouchIdTimeout, {QS("Security/ResetTouchIdTimeout"), Roaming, 30}},
{Config::Security_ResetTouchIdScreenlock,{QS("Security/ResetTouchIdScreenlock"), Roaming, true}},
+ {Config::Security_NoConfirmMoveEntryToRecycleBin,{QS("Security/NoConfirmMoveEntryToRecycleBin"), Roaming, true}},
// Browser
{Config::Browser_Enabled, {QS("Browser/Enabled"), Roaming, false}},
diff --git a/src/core/Config.h b/src/core/Config.h
index 553804699..8b9a02a5f 100644
--- a/src/core/Config.h
+++ b/src/core/Config.h
@@ -119,6 +119,7 @@ public:
Security_ResetTouchId,
Security_ResetTouchIdTimeout,
Security_ResetTouchIdScreenlock,
+ Security_NoConfirmMoveEntryToRecycleBin,
Browser_Enabled,
Browser_ShowNotification,