| Summary: | [Progress] Job progress popup changed: launching one job many times makes job dialog pop up multiple times | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Mircea <mluchian> | ||||
| Component: | UI | Assignee: | Platform UI Triaged <platform-ui-triaged> | ||||
| Status: | CLOSED WONTFIX | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | daniel_megert, remy.suen | ||||
| Version: | 3.6.1 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | stalebug | ||||||
| Attachments: |
|
||||||
Created attachment 180071 [details]
screenshot fo the problem
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. If you have further information on the current state of the bug, please add it. 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. 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. |
Build Identifier: 20100917-0705 I recently updated my Eclipse from 3.5 to 3.6 and have noticed that the UI behavior of the Job API has changed Whenever I launch multiple jobs in my RCP application running under 3.6, multiple job popups appear that represent the exact same data. Reproducible: Always Steps to Reproduce: 1. Create a sample RCP Application 2. Bind the following code with an action and a toolbar button: Job job = new Job("long running action") { protected org.eclipse.core.runtime.IStatus run(IProgressMonitor monitor) { // Generator.this.mainView.getButtonGenerateConstraints().setEnabled(false); monitor.beginTask("Long running action", 100); for (int i = 0; i < 10; i++) { if (monitor.isCanceled()) { // Generator.this.mainView.getButtonGenerateConstraints().setEnabled(true); return Status.CANCEL_STATUS; } monitor.subTask("working on step " + i); monitor.worked(10); MyAction.this.sleep(1000); } monitor.done(); // Generator.this.mainView.getButtonGenerateConstraints().setEnabled(true); return Status.OK_STATUS; } }; job.setUser(true); job.schedule(); 3. Press multiple times on the button. Many repetitive popups of the same job(s) appear, and they contain the exact same data