forked from eclipse-platform/eclipse.platform.ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Statusline not cleared after job completion if sub-tasks are used
Similar to `setTaskName()`, the string created when calling `subTask()` must also be stored in the `fTaskName`, rather than in `fMessageText` field. Otherwise the label of the status line is not cleared after calling done() on the progress monitor. Because the text of the sub-task is calculated using the value of `fTaskName`, the original name of the task needs to be stored in a separate field to avoid the name of the previous sub-task to be contained in the next sub-task. Closes eclipse-platform#2762
- Loading branch information
Showing
2 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters