ref 10138: use setDirty but do not change dirty flag of managedform
authorKatja Luther <k.luther@bgbm.org>
Wed, 23 Nov 2022 12:11:02 +0000 (13:11 +0100)
committerKatja Luther <k.luther@bgbm.org>
Wed, 23 Nov 2022 12:11:02 +0000 (13:11 +0100)
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/name/e4/TaxonEditor.java

index 806c3d2b1f9c25b76b78386012e87266f9119f88..1717265ab4e942587589dda07befb8e67d146c6e 100644 (file)
@@ -662,7 +662,7 @@ public class TaxonEditor
             AbstractGroupedContainerE4<?> container = getContainer((TaxonBase<?>) element);
             if (container != null) {
                 container.refresh();
-               // container.setDirty(true);
+                container.setDirty(false);
             }
         }
 
@@ -670,7 +670,7 @@ public class TaxonEditor
             AbstractGroupedContainerE4 container = getContainer(((TaxonRelationship) element).getFromTaxon());
             if (container != null) {
                 container.refresh();
-//                container.setDirty(true);
+                container.setDirty(false);
             }
         }
     }