mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-25 23:39:45 -05:00
Add tags to history comparison
This commit is contained in:
parent
44be95cc1b
commit
656e6161a0
@ -3679,6 +3679,10 @@ Error: %1</source>
|
||||
<source>Auto-Type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Tags</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>EntryModel</name>
|
||||
|
@ -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(", ");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user