Skip to content

Commit

Permalink
fix layout in dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
UrsZeidler committed Apr 15, 2024
1 parent d00f0bd commit 8b01567
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void checkStateChanged(CheckStateChangedEvent event) {
});
checkboxTreeViewer.setLabelProvider(labelProvider);
Tree tree = checkboxTreeViewer.getTree();
tree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 2));
tree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 2, 2));
checkboxTreeViewer.setContentProvider(new SimpleListContenProvider(new AdapterFactoryContentProvider(AdapterFactoryUtil.getInstance()
.getAdapterFactory())));
//
Expand Down

0 comments on commit 8b01567

Please sign in to comment.