| Summary: | RC1 - Flashing and redrawing in Hierarchy View | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Steve Northover <snorthov> |
| Component: | UI | Assignee: | Platform-UI-Inbox <Platform-UI-Inbox> |
| Status: | RESOLVED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | Kevin_McGuire, martinae, Tod_Creasey |
| Version: | 2.1 | ||
| Target Milestone: | 2.1 RC2 | ||
| Hardware: | PC | ||
| OS: | Linux-Motif | ||
| Whiteboard: | |||
|
Description
Steve Northover
Adding Kevin McGuire to CC list as this may be a CVS issue. The treeveiwer does an unnecessary refresh even image and text are the same
TreeViewer.doUpdateItem
String oldText= item.getText();
String text= lprovider.getText(data);
if (text != null && !text.equals(oldText)) {
item.setText(text);
}
We just respond to deltas, so the question will be "Who is generating a needless delta?" |