From 8896f1d83eeaf9eed2880ba84aa1dae94ed8e88f Mon Sep 17 00:00:00 2001 From: Xuan Chen Date: Tue, 18 May 2010 21:59:03 +0000 Subject: [PATCH] Fix for bug 312171. --- .../eclipse/rse/ui/dialogs/SystemSelectFileTypesDialog.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectFileTypesDialog.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectFileTypesDialog.java index aeaf56e9aec..5ee899f1460 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectFileTypesDialog.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectFileTypesDialog.java @@ -13,6 +13,7 @@ * * Contributors: * {Name} (company) - description of contribution. + * Xuan Chen (IBM) - [312171] TVT36:TCT186: TVT_KOR: Truncation on button *******************************************************************************/ package org.eclipse.rse.ui.dialogs; @@ -228,6 +229,9 @@ public class SystemSelectFileTypesDialog Button deselectButton = createButton(buttonComposite, IDialogConstants.DESELECT_ALL_ID, SystemResources.RESID_SELECTFILES_DESELECTALL_BUTTON_ROOT_LABEL, false); + GridData buttonData = (GridData)deselectButton.getLayoutData(); + buttonData.widthHint = buttonData.widthHint * 130 / 100; + listener = new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { listViewer.setAllChecked(false);