| Summary: | [Forms] SharedScrolledComposite.reflow(boolean) does not properly reflow to resize the section in question | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | zengland |
| Component: | User Assistance | Assignee: | platform-ua-inbox <platform-ua-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | cgold, eclipse.felipe, steeg |
| Version: | 4.1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | stalebug | ||
| Attachments: | |||
|
Description
zengland
Created attachment 191434 [details]
This is the section in question before a maximize
Created attachment 191435 [details]
This is the section in question after a maximize
Created attachment 191436 [details]
This is the section in question after a maximize and expand/collapse
Created attachment 191437 [details]
This is the section in question before a maximize
If the version set on this bug is correct (4.1) and not the version from comment 0 (Version: 3.4.2 Build id: M20090211-1700) I might be hitting a related issue: since 4.1M5, our ScrolledComposite grows larger than its parent if any part stack (not only the one that contains the ScrolledComposite) is resized. Our workaround is to set the ScrolledComposite to the size of its parent in a control listener, something like this: sc.addControlListener(new ControlListener() { public void controlResized(final ControlEvent e) { sc.setSize(sc.getParent().getSize()); } public void controlMoved(final ControlEvent e) {} }); Can you attach a test case to the bug report? This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. If the bug is still relevant, please remove the "stalebug" whiteboard tag. |