Skip to content

Commit

Permalink
Merge pull request #3200 from ControlSystemStudio/CSSTUDIO-2826
Browse files Browse the repository at this point in the history
Add line wrapping in MultiLineInputDialog
  • Loading branch information
shroffk authored Nov 25, 2024
2 parents 06efd37 + 17fc55e commit 9c0f55d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public MultiLineInputDialog(final Node parent, final String initial_text, final
{
text = new TextArea(initial_text);
text.setEditable(editable);
text.setWrapText(true);

getDialogPane().setContent(new BorderPane(text));
if (editable)
Expand Down

0 comments on commit 9c0f55d

Please sign in to comment.