提交 e5e6b582 编写于 作者: N Nikita Akilov

#10236 adjust windows size and make it resizable

上级 b6d6a322
......@@ -148,7 +148,10 @@ public class NavigatorHandlerObjectDelete extends NavigatorHandlerObjectBase imp
final Table objectsTable = new Table(tableGroup, SWT.BORDER | SWT.FULL_SELECTION);
objectsTable.setHeaderVisible(false);
objectsTable.setLinesVisible(true);
objectsTable.setLayoutData(new GridData(GridData.FILL_BOTH));
GridData gd = new GridData(GridData.FILL_BOTH);
gd.heightHint = 200;
gd.widthHint = 200;
objectsTable.setLayoutData(gd);
UIUtils.createTableColumn(objectsTable, SWT.RIGHT, UINavigatorMessages.confirm_deleting_multiple_objects_column_name);
UIUtils.createTableColumn(objectsTable, SWT.RIGHT, UINavigatorMessages.confirm_deleting_multiple_objects_column_description);
for (Object obj: selectedObjects) {
......@@ -193,6 +196,11 @@ public class NavigatorHandlerObjectDelete extends NavigatorHandlerObjectBase imp
createButton(parent, IDialogConstants.DETAILS_ID, UINavigatorMessages.actions_navigator_view_script_button, false);
}
}
@Override
protected boolean isResizable() {
return true;
}
}
@Override
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册