1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

Fix for bug 312171.

This commit is contained in:
Xuan Chen 2010-05-18 21:59:03 +00:00
parent 7aad9b4ec3
commit 8896f1d83e

View file

@ -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);