Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2013-03-18 19:36:37 +0000
committerGerrit Code Review @ Eclipse.org2013-05-08 07:23:50 +0000
commite83de18edfd3c3538882d1296b7f365cbc3d80ca (patch)
tree45744b8678288e7a590ece18448ab89cc38cf85c /org.eclipse.mylyn.tasks.core
parentad4f4ec1807af8386b5dbb2f0faf6045b6bec0f9 (diff)
downloadorg.eclipse.mylyn.tasks-e83de18edfd3c3538882d1296b7f365cbc3d80ca.tar.gz
org.eclipse.mylyn.tasks-e83de18edfd3c3538882d1296b7f365cbc3d80ca.tar.xz
org.eclipse.mylyn.tasks-e83de18edfd3c3538882d1296b7f365cbc3d80ca.zip
403094: cannot mark task unread after incoming suppressed
Change-Id: Icb207c30c943992a77a76d9e5e5d9c81b5bf7349 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=403094
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/data/TaskDataManager.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/data/TaskDataManager.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/data/TaskDataManager.java
index 36a06f1c6..efd35a50f 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/data/TaskDataManager.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/data/TaskDataManager.java
@@ -485,6 +485,8 @@ public class TaskDataManager implements ITaskDataManager {
break;
}
} else {
+ // if an incoming was previously suppressed it need to show now
+ task.setAttribute(ITasksCoreConstants.ATTRIBUTE_TASK_SUPPRESS_INCOMING, Boolean.toString(false));
switch (task.getSynchronizationState()) {
case SYNCHRONIZED:
task.setSynchronizationState(SynchronizationState.INCOMING);

Back to the top