We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 147815d + 267cc97 commit 12e032eCopy full SHA for 12e032e
app/display/editor/src/main/java/org/csstudio/display/builder/editor/properties/PropertyPanelSection.java
@@ -563,7 +563,7 @@ else if (property instanceof MacroizedWidgetProperty)
563
final MacroizedWidgetProperty<?> other_prop = (MacroizedWidgetProperty<?>) w.getProperty(macro_prop.getName());
564
undo.execute(new SetMacroizedWidgetPropertyAction(other_prop, result.get()));
565
}
566
- text.setText(result.get());
+ text.setText(result.get().replaceAll("\n", "\\\\n"));
567
Tooltip.install(text, new Tooltip(result.get()));
568
});
569
field = new HBox(text, open_editor);
0 commit comments