Skip to content

Commit

Permalink
Merge pull request #1749 from nadment/HOP-4475
Browse files Browse the repository at this point in the history
Missing SWT border for Windows
  • Loading branch information
hansva authored Oct 19, 2022
2 parents 9f324db + 4049566 commit 0e43c39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public void createControl(Composite parent) {
manager.getMetadataProvider(),
ExecutionInfoLocation.class,
wMainComp,
SWT.SINGLE | SWT.LEFT,
SWT.SINGLE | SWT.LEFT | SWT.BORDER,
BaseMessages.getString(
PKG, "PipelineRunConfigurationDialog.label.ExecutionInfoLocation"),
BaseMessages.getString(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public void createControl(Composite parent) {
manager.getMetadataProvider(),
ExecutionInfoLocation.class,
parent,
SWT.SINGLE | SWT.LEFT,
SWT.SINGLE | SWT.LEFT | SWT.BORDER,
BaseMessages.getString(
PKG, "WorkflowRunConfigurationDialog.label.ExecutionInfoLocation"),
BaseMessages.getString(
Expand Down

0 comments on commit 0e43c39

Please sign in to comment.