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:
parent
6f2816e039
commit
4c5225719b
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue