Skip to content
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.

Commit

Permalink
LANG: Fixed "Build Target" group widget height is 1.
Browse files Browse the repository at this point in the history
(fixes #150)
  • Loading branch information
bruno-medeiros committed Aug 24, 2015
1 parent b663899 commit bb48c8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion documentation/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## release ChangeLog

### (NextVersion)
* Fixed: if build tool reports many error messages, the Eclipse project build will take too long to finish. (#26)
* Fixed: In Linux, the "Build Target" group UI widget height is broken, too short. (#150)
* Fixed: if build tool reports many error messages, the Eclipse project build will take too long to finish.
* Added UserGuide note about using Homebrew GDB in OS X.
* Fixed: "Run As"/"Debug As" launch shortcut incorrectly matching pre-existing launch configurations.
* Fixed: project not being refreshed when Build Target build invoked directly from Project Explorer.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
package melnorme.lang.ide.ui.launch;

import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;

import melnorme.lang.ide.ui.LangUIMessages;
Expand Down Expand Up @@ -43,7 +44,7 @@ public int getPreferredLayoutColumns() {

@Override
protected void createContents_layout() {
combo.setLayoutData(gdFillDefaults().grab(false, false).hint(200, 1).create());
combo.setLayoutData(gdFillDefaults().grab(false, false).hint(200, SWT.DEFAULT).create());
}

@Override
Expand Down

0 comments on commit bb48c8f

Please sign in to comment.