Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-02-18 23:33:15 +0000
committerspingel2008-02-18 23:33:15 +0000
commitbfb065f9c74fe69c54722e522c1a4f09b831f906 (patch)
treef723a1fcd650355a97c7e11bbea905d1c2180939
parentb278cb8424e0e251bf99f0f06b22032874989fef (diff)
downloadorg.eclipse.mylyn.tasks-bfb065f9c74fe69c54722e522c1a4f09b831f906.tar.gz
org.eclipse.mylyn.tasks-bfb065f9c74fe69c54722e522c1a4f09b831f906.tar.xz
org.eclipse.mylyn.tasks-bfb065f9c74fe69c54722e522c1a4f09b831f906.zip
RESOLVED - bug 215136: Eclipse is maximized when notification link is clicked
https://bugs.eclipse.org/bugs/show_bug.cgi?id=215136
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/notifications/TaskListNotificationPopup.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/notifications/TaskListNotificationPopup.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/notifications/TaskListNotificationPopup.java
index c5057f0d7..96436ce01 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/notifications/TaskListNotificationPopup.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/notifications/TaskListNotificationPopup.java
@@ -92,6 +92,10 @@ public class TaskListNotificationPopup extends AbstractNotificationPopup {
if (window != null) {
Shell windowShell = window.getShell();
if (windowShell != null) {
+ if (windowShell.getMinimized()) {
+ windowShell.setMinimized(false);
+ }
+
windowShell.open();
windowShell.forceActive();
}

Back to the top