Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
[nobug] - Removing the border flag
Browse files Browse the repository at this point in the history
Signed-off-by: Lakshminarayana Nekkanti <[email protected]>
  • Loading branch information
lak-proddev committed Aug 8, 2019
1 parent 38fc187 commit 2018c0f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public LaunchConfigTab() {

@Override
public void createControl(Composite parent) {
Composite comp = new Group(parent, SWT.BORDER);
Composite comp = new Group(parent, SWT.NONE);
setControl(comp);

GridLayoutFactory.swtDefaults().numColumns(2).applyTo(comp);
Expand All @@ -74,7 +74,7 @@ public void createControl(Composite parent) {
labelSdkLocation.setText(Messages.Preference_SDKLocation);
GridDataFactory.swtDefaults().applyTo(labelSdkLocation);

textSdkLocation = new Text(comp, SWT.BORDER);
textSdkLocation = new Text(comp, SWT.NONE);
textSdkLocation.setMessage(Messages.Launch_SDKLocation_Message);
GridDataFactory.fillDefaults().grab(true, false).applyTo(textSdkLocation);
textSdkLocation.addModifyListener(event -> updateLaunchConfigurationDialog());
Expand All @@ -83,7 +83,7 @@ public void createControl(Composite parent) {
labelMainClass.setText(Messages.Launch_MainClass);
GridDataFactory.swtDefaults().applyTo(labelMainClass);

textMainClass = new Text(comp, SWT.BORDER);
textMainClass = new Text(comp, SWT.NONE);
textMainClass.setMessage(Messages.Launch_MainClass_Message);
GridDataFactory.fillDefaults().grab(true, false).applyTo(textMainClass);
textMainClass.addModifyListener(event -> updateLaunchConfigurationDialog());
Expand Down

2 comments on commit 2018c0f

@lak-proddev
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding a border for the dart launch config tab will differentiate with the other eclipse launch tabs.

@jonas-jonas
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Please sign in to comment.