Add tags to history comparison

This commit is contained in:
Jonathan White
2022-03-24 22:55:11 -04:00
parent 44be95cc1b
commit 656e6161a0
2 changed files with 7 additions and 0 deletions

View File

@@ -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(", ");