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/gui
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2022-03-25 05:55:11 +0300
committerJonathan White <support@dmapps.us>2022-04-03 20:28:39 +0300
commit656e6161a06956685be895c74a63e8cab349e311 (patch)
tree9054b83b9aab22461e0b08ae46f8632d52e707e2 /src/gui
parent44be95cc1ba9caa8c85e05c5d5189b7983c143c4 (diff)
Add tags to history comparison
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/entry/EntryHistoryModel.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/entry/EntryHistoryModel.cpp b/src/gui/entry/EntryHistoryModel.cpp
index ac70c2e66..acde63cb5 100644
--- a/src/gui/entry/EntryHistoryModel.cpp
+++ b/src/gui/entry/EntryHistoryModel.cpp
@@ -246,6 +246,9 @@ void EntryHistoryModel::calculateHistoryModifications()
|| curr->defaultAutoTypeSequence() != compare->defaultAutoTypeSequence()) {
modifiedFields << tr("Auto-Type");
}
+ if (curr->tags() != compare->tags()) {
+ modifiedFields << tr("Tags");
+ }
m_historyModifications << modifiedFields.join(", ");