| Summary: | Scrolling through tooltip no data is shown in lower panel | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Timothy Mowlem <tmowlem> | ||||
| Component: | Debug | Assignee: | JDT-Debug-Inbox <jdt-debug-inbox> | ||||
| Status: | CLOSED WONTFIX | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | markus.kell.r | ||||
| Version: | 3.5 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | Macintosh | ||||||
| OS: | Mac OS X - Carbon (unsup.) | ||||||
| Whiteboard: | stalebug | ||||||
| Attachments: |
|
||||||
|
Description
Timothy Mowlem
Created attachment 160750 [details]
Screenshot of issue
The value IS displayed if you then scroll to the following line then back up a line
Interesting. I can reproduce in I20100302-0800 on WinXP with the snippet below, but *only* when the tree's height is an exact multiple of the item height (i.e. the last visible item is fully visible). This is the case out of the box when I use Ctrl+Shift+I on 'hashMap'.
I suspect this is a problem of the virtual tree (e.g. an element is selected before its TreeItem has been completely created and initialized).
import java.util.HashMap;
public class Try {
public static void main(String[] args) {
HashMap<String, Integer> hashMap = new HashMap<String, Integer>();
for (int i = 0; i < 50; i++) {
hashMap.put(String.valueOf('a' + i), i);
}
System.out.println(hashMap); // breakpoint here
}
}
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. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. 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. -- The automated Eclipse Genie. |