Skip to content

Commit

Permalink
Merge pull request #1050 from pavel-ch/master
Browse files Browse the repository at this point in the history
Display Builder Editor - icon for MultiLineInputDialog on text proper…
  • Loading branch information
kasemir authored Jan 7, 2020
2 parents 7defffa + e44ef9e commit 58681b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ else if (property instanceof MacroizedWidgetProperty)
final Button open_editor = new Button("...");
open_editor.setOnAction(event ->
{
final MultiLineInputDialog dialog = new MultiLineInputDialog(macro_prop.getSpecification());
final MultiLineInputDialog dialog = new MultiLineInputDialog(open_editor, macro_prop.getSpecification());
DialogHelper.positionDialog(dialog, open_editor, -600, 0);
final Optional<String> result = dialog.showAndWait();
if (!result.isPresent())
Expand Down

0 comments on commit 58681b9

Please sign in to comment.