mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-20 15:35:24 +02:00
Bugfix from Alex
This commit is contained in:
parent
a203d723b1
commit
7c1883b501
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ public class ControlFactory {
|
|||
public static CheckboxTableViewer createListViewer(Composite parent, String[] opt_list,
|
||||
int width, int height, int style) {
|
||||
|
||||
Table table = new Table(parent, SWT.BORDER);
|
||||
Table table = new Table(parent, SWT.BORDER | SWT.CHECK);
|
||||
CheckboxTableViewer listViewer = new CheckboxTableViewer(table);
|
||||
GridData data = new GridData(style);
|
||||
data.widthHint = width;
|
||||
|
|
Loading…
Add table
Reference in a new issue