| Summary: | [ViewMgmt] Resize of Standalone Views not handled | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Nirav Sheth <nssheth> |
| Component: | UI | Assignee: | Nick Edgar <n.a.edgar> |
| Status: | RESOLVED DUPLICATE | QA Contact: | |
| Severity: | major | ||
| Priority: | P3 | ||
| Version: | 3.1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Build: 3.1M7 If you were to create a RCP Application that had a perspective that looked something like this: public void createInitialLayout(IPageLayout layout) { String editorArea = layout.getEditorArea(); layout.setEditorAreaVisible(false); layout.setFixed(true); layout.addStandaloneView("org.eclipse.pde.runtime.LogView", false, IPageLayout.TOP, .25f, editorArea); } The View is set to a certain size, and if you were to maximize the window then the view stays the same size. But if you resize the window then the view also resize to the same size as the window. So the maximize/minimize scenarios are not handled. If you add the title to the view then everything works correctly.