]> gerrit.simantics Code Review - simantics/platform.git/commitdiff
Merge "Counting of pending nodes does not work if null text is saved as """
authorTuukka Lehtonen <tuukka.lehtonen@semantum.fi>
Tue, 26 May 2020 10:33:48 +0000 (10:33 +0000)
committerGerrit Code Review <gerrit2@simantics>
Tue, 26 May 2020 10:33:48 +0000 (10:33 +0000)
bundles/org.simantics.diagram/src/org/simantics/diagram/elements/TextNode.java

index 77eb789220d3118e5d8c370c2889b731450e060f..bf1bf563b32c9f9e89c2c2355902d2a5b5f1ef02 100644 (file)
@@ -403,7 +403,7 @@ public class TextNode extends G2DNode implements IDynamicSelectionPainterNode, L
         if (hasState(STATE_EDITING))
             return;
 
-        this.text = new String(text != null ? text : "");
+        this.text = text;
         this.font = font;
         this.color = color;
         this.scale = scale;
@@ -470,8 +470,8 @@ public class TextNode extends G2DNode implements IDynamicSelectionPainterNode, L
         // no value => value
         if(this.text == null && text != null) NodeUtil.decreasePending(this);
 
-        this.text = text != null ? text : "";
-        caret = Math.min(caret, this.text.length());
+        this.text = text;
+        caret = text != null ? Math.min(caret, text.length()) : 0;
         selectionTail = caret;
 
         resetCaches();