| Summary: | [sandbox] Task Trim widget title should reflect task title changes immediately | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Jörg Thönnes <jtk499> | ||||
| Component: | Mylyn | Assignee: | Steffen Pingel <steffen.pingel> | ||||
| Status: | RESOLVED DUPLICATE | QA Contact: | |||||
| Severity: | minor | ||||||
| Priority: | P3 | CC: | stepper | ||||
| Version: | 3.1 | Keywords: | helpwanted | ||||
| Target Milestone: | --- | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Whiteboard: | |||||||
| Bug Depends on: | |||||||
| Bug Blocks: | 303278 | ||||||
| Attachments: |
|
||||||
|
Description
Jörg Thönnes
Steffen, I would be happy to help. Is this a difficult change? Could you provide some initial context? Thanks, Jörg I think TaskTrimWidget needs to register a listener with the TaskList to get notified when task properties change. Something along these lines:
private final ITaskListChangeListener TASKLIST_CHANGE_LISTENER = new ITaskListChangeListener() {
public void containersChanged(Set<TaskContainerDelta> containers) {
for (TaskContainerDelta delta : containers) {
if (delta.getKind() == TaskContainerDelta.Kind.CONTENT && delta.getElement() == activeTask) {
update();
}
}
}
};
TasksUiPlugin.getTaskList().addChangeListener(listener);
Created attachment 127383 [details]
mylyn/context/zip
Will this implemented after bug 303278? Should be simple enough. Already fixed as part of bug 198844. *** This bug has been marked as a duplicate of bug 198844 *** |