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:
parent
7aad9b4ec3
commit
8896f1d83e
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue