Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-12-06 18:30:26 +0000
committerDarin Wright2002-12-06 18:30:26 +0000
commit613e86d812b747d0e7d694aa853e89008820f788 (patch)
treec261d3fb02e4d53f8f03c6b2a0d1beba90c911c7 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
parent1bf522d73e85997776f0b776ba5f1f19bf187a5b (diff)
downloadeclipse.platform.debug-613e86d812b747d0e7d694aa853e89008820f788.tar.gz
eclipse.platform.debug-613e86d812b747d0e7d694aa853e89008820f788.tar.xz
eclipse.platform.debug-613e86d812b747d0e7d694aa853e89008820f788.zip
bug 26323
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
index 69891815c..5a905cebb 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
@@ -253,7 +253,7 @@ public class CommonTab extends AbstractLaunchConfigurationTab {
fFavoritesTable = CheckboxTableViewer.newCheckList(favComp, SWT.CHECK | SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION);
Control table = fFavoritesTable.getControl();
- gd = new GridData(GridData.FILL_HORIZONTAL);
+ gd = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
gd.horizontalSpan = 1;
table.setLayoutData(gd);
fFavoritesTable.setContentProvider(new FavoritesContentProvider());

Back to the top