mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04: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>
|
<source>Auto-Type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Tags</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>EntryModel</name>
|
<name>EntryModel</name>
|
||||||
|
@ -246,6 +246,9 @@ void EntryHistoryModel::calculateHistoryModifications()
|
|||||||
|| curr->defaultAutoTypeSequence() != compare->defaultAutoTypeSequence()) {
|
|| curr->defaultAutoTypeSequence() != compare->defaultAutoTypeSequence()) {
|
||||||
modifiedFields << tr("Auto-Type");
|
modifiedFields << tr("Auto-Type");
|
||||||
}
|
}
|
||||||
|
if (curr->tags() != compare->tags()) {
|
||||||
|
modifiedFields << tr("Tags");
|
||||||
|
}
|
||||||
|
|
||||||
m_historyModifications << modifiedFields.join(", ");
|
m_historyModifications << modifiedFields.join(", ");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user