| Summary: | [Widgets] Application disappears from the Windows Task Switcher | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Lars <shinfoo> |
| Component: | SWT | Assignee: | Platform-SWT-Inbox <platform-swt-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | Felipe Heidrich <eclipse.felipe> |
| Severity: | normal | ||
| Priority: | P3 | CC: | Silenio_Quarti |
| Version: | 3.5 | Keywords: | triaged |
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | stalebug | ||
I couldn't reproduce this with the latest in HEAD. What version of Eclipse are you running? My mistake - totally reproducible. This is a one-off bulk update. (The last one in the triage migration). Moving bugs from swt-triaged@eclipse to platform-swt-inbox@eclipse.org and adding "triaged" keyword as per new triage process: https://wiki.eclipse.org/SWT/Devel/Triage See Bug 518478 for details. Tag for notification/mail filters: @TriageBulkUpdate 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. |
example application: import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class Foo { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Application"); shell.setSize(200, 200); shell.open(); Shell dialog = new Shell(shell, SWT.TOOL | SWT.APPLICATION_MODAL); dialog.setSize(50, 50); dialog.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } Steps To Reproduce: 1. Launch the example app. 2. Use Alt+Tab several times. 3. The application's symbol disappears. Without the SWT.TOOL hint everything works fine, but i need the small shell's drop shadow.