Skip to content

Commit

Permalink
CSSTUDIO-2072 Add title to warning alert.
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahamwolk committed May 8, 2024
1 parent 228d483 commit ff62232
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public AddPVsFromTheClipboardMenuItem(UndoableActionManager undoableActionManage
private void showNoPVsFoundInClipboardWarning() {
Alert warningAlert = new Alert(Alert.AlertType.INFORMATION,
Messages.TheClipboardDoesNotContainPVs);
warningAlert.setTitle(Messages.NoPVsFoundInTheClipboard);
warningAlert.setHeaderText(Messages.NoPVsFoundInTheClipboard);
DialogHelper.positionDialog(warningAlert, nodeToPositionDialogOver, 0, 0);
warningAlert.show();
Expand Down

0 comments on commit ff62232

Please sign in to comment.