Just update save count on all changes

(closes #6239)
This commit is contained in:
Bryan Housel
2019-04-30 10:02:00 -04:00
parent b215c1f1a5
commit dbb10bb155

View File

@@ -104,11 +104,7 @@ export function uiToolSave(context) {
context.history()
.on('change.save', function(diff) {
if (!diff || diff.didChange.addition || diff.didChange.deletion) {
updateCount(); // only on significant changes
}
});
.on('change.save', updateCount);
context
.on('enter.save', function() {