| Summary: | Toggling between problems with hotkey doesn't update status line | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | John Arthorne <john.arthorne> |
| Component: | UI | Assignee: | Erich Gamma <erich_gamma> |
| Status: | RESOLVED DUPLICATE | QA Contact: | |
| Severity: | critical | ||
| Priority: | P2 | Keywords: | usability |
| Version: | 2.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 2000 | ||
| Whiteboard: | |||
|
Description
John Arthorne
In both cases the error message is set to the status line manager. However, the line is only visually updated when using the toolbar buttons. See org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.gotoError(boolean) Marked critical as part of Java Editor Improvement. Reclassified as usability - this functionality is still possible using the Tasks View. The status line is being updated in both cases: when using the toolbar and
Ctrol+E. The problem is that CompilationUnitEditor.setStatusLineErrorMessage is
reseting the message in the SelectionChangedListener.
Add a break point inside the method: selectionChanged(...)
fStatusLineClearer= new ISelectionChangedListener() {
public void selectionChanged(SelectionChangedEvent event) {
|