From 63bc5765e31c3eb0e8f265cd265bacd050844967 Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Sat, 1 Jun 2013 17:02:24 -0400 Subject: [PATCH] Bug 394492 - Project options can be invisible in Convert wizard Change-Id: Iff54d3baf605ab79fedcd842a22955d7a3018ac7 Signed-off-by: Marc-Andre Laperle Reviewed-on: https://git.eclipse.org/r/13462 --- .../managedbuilder/ui/wizards/ConvertToMakeWizardPage.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java index 5d3ff735f03..df45066bfd4 100644 --- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java +++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/ConvertToMakeWizardPage.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2010 QNX Software Systems and others. + * Copyright (c) 2000, 2013 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -8,6 +8,7 @@ * Contributors: * QNX Software Systems - Initial API and implementation * Intel corporation - customization for New Project model. + * Marc-Andre Laperle (Ericsson) - Bug 394492 Project options not visible *******************************************************************************/ package org.eclipse.cdt.managedbuilder.ui.wizards; @@ -90,7 +91,9 @@ public class ConvertToMakeWizardPage extends ConvertProjectWizardPage { super.addToMainPage(container); Group optionsGroup = new Group(container, SWT.NONE); - optionsGroup.setLayoutData(new GridData(GridData.FILL_BOTH)); + GridData layoutData = new GridData(GridData.FILL_HORIZONTAL); + layoutData.heightHint = 200; + optionsGroup.setLayoutData(layoutData); optionsGroup.setLayout(new GridLayout(1, true)); optionsGroup.setText(MakeUIPlugin.getResourceString("WizardMakeProjectConversion.projectOptions.title")); //$NON-NLS-1$ Composite c = new Composite(optionsGroup, SWT.NONE);