1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Patch for bug 187321 by Jason Montojo - Button truncation on Add Directory Dialog

This commit is contained in:
Vivian Kong 2007-05-18 14:50:14 +00:00
parent ea86a3db2a
commit c89e703219

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2006 QNX Software Systems and others.
* Copyright (c) 2000, 2007 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
@ -7,6 +7,7 @@
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.debug.mi.internal.ui;
@ -113,7 +114,6 @@ public class SolibSearchPathBlock extends Observable implements IMILaunchConfigu
fBrowseButton = ControlFactory.createPushButton( subComp, MIUIMessages.getString( "GDBServerDebuggerPage.7" ) ); //$NON-NLS-1$
data = new GridData();
data.horizontalAlignment = GridData.FILL;
data.widthHint = convertHorizontalDLUsToPixels( IDialogConstants.BUTTON_WIDTH );
fBrowseButton.setLayoutData( data );
fBrowseButton.addSelectionListener( new SelectionAdapter() {