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

Allow the dialog to be resized for long locations.

PR:107164
This commit is contained in:
Thomas Fletcher 2007-04-10 18:00:51 +00:00
parent 6f2816e039
commit 4c5225719b

View file

@ -34,8 +34,9 @@ public class BuildTargetDialog extends Dialog {
TargetListViewerPart targetPart;
IContainer fContainer;
public BuildTargetDialog(Shell shell, IContainer container) {
super(shell);
public BuildTargetDialog(Shell parent, IContainer container) {
super(parent);
setShellStyle(getShellStyle() | SWT.RESIZE);
fContainer = container;
targetPart = new TargetListViewerPart(fContainer);
}