wlxml: metadata - ignore setting the same value as the old one
[fnpeditor.git] / src / wlxml / extensions / metadata / metadata.js
index acd404c..899306d 100644 (file)
@@ -17,6 +17,9 @@ _.extend(Row.prototype, {
     ChangeProperty: smartxmlTransformations.createContextTransformation({
         impl: function(t, rowIndex, propName, value) {
             var row = this.getMetadata().at(rowIndex);
+            if(row.getValue() === value) {
+                return;
+            }
             t.rowIndex = rowIndex;
             t.propName = propName;
             t.oldValue = row[propName];