Skip to content
Snippets Groups Projects
Commit 7d53dc1c authored by Simon Barner's avatar Simon Barner
Browse files

- Tweak initial size and make dialog resizable

refs 1841
parent 50bb33d9
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,8 @@ public class MultiSelectionCellEditor extends DialogCellEditor {
/** Constructs a new {@link MultiSelectionDialog}. */
public MultiSelectionDialog(Shell parentShell) {
super(parentShell);
setShellStyle(getShellStyle() | SWT.RESIZE);
}
/**
......@@ -158,7 +160,7 @@ public class MultiSelectionCellEditor extends DialogCellEditor {
/** {@inheritDoc} */
@Override
protected Point getInitialSize() {
return new Point(600, 600);
return new Point(800, 400);
}
/** Returns the set of selected elements */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment