Skip to content

Commit

Permalink
Question popup get fields not showing apache#3020
Browse files Browse the repository at this point in the history
  • Loading branch information
nadment committed Jun 21, 2023
1 parent f214a97 commit 08d938b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ public int open() {
formLayout.marginBottom = formMargin;
formLayout.marginRight = formMargin;
shell.setLayout(formLayout);

PropsUi.setLook(shell);

Label wLabel = new Label(shell, SWT.CENTER | SWT.WRAP);
PropsUi.setLook(wLabel);
wLabel.setText(Const.NVL(message, ""));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ public static final void getFieldsFromPrevious(

int choice = 0;

if (keys.isEmpty()) {
if ( !keys.isEmpty()) {
// Ask what we should do with the existing data in the transform.
//
DialogBoxWithButtons getFieldsChoiceDialog =
Expand Down

0 comments on commit 08d938b

Please sign in to comment.