Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2010-06-08 19:54:34 +0000
committermkersten2010-06-08 19:54:34 +0000
commit39dd88e0747e0a5709cddb9162534c7c6b1b130c (patch)
tree2e7fbbb2ed747bb4d09ff204b4e2832e498d1bdb
parentf44704b6977f2ef8659a6c91c4882ec24529a59b (diff)
downloadorg.eclipse.mylyn.tasks-39dd88e0747e0a5709cddb9162534c7c6b1b130c.tar.gz
org.eclipse.mylyn.tasks-39dd88e0747e0a5709cddb9162534c7c6b1b130c.tar.xz
org.eclipse.mylyn.tasks-39dd88e0747e0a5709cddb9162534c7c6b1b130c.zip
RESOLVED - bug 316166: provide a colour setting for tasks that are overdue but not owned by the user
https://bugs.eclipse.org/bugs/show_bug.cgi?id=316166
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TaskElementLabelProvider.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TaskElementLabelProvider.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TaskElementLabelProvider.java
index 1bf3628ac..ed8c16d00 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TaskElementLabelProvider.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/TaskElementLabelProvider.java
@@ -196,7 +196,7 @@ public class TaskElementLabelProvider extends LabelProvider implements IColorPro
&& TasksUiPlugin.getTaskActivityManager().isPastReminder(task)) {
return themeManager.getCurrentTheme().getColorRegistry().get(CommonThemes.COLOR_SCHEDULED_PAST);
} else if (TasksUiPlugin.getTaskActivityManager().isOverdueForOther(task)) {
- return themeManager.getCurrentTheme().getColorRegistry().get(CommonThemes.COLOR_SCHEDULED_TODAY);
+ return themeManager.getCurrentTheme().getColorRegistry().get(CommonThemes.COLOR_OVERDUE_FOR_OTHERS);
} else if (TasksUiPlugin.getTaskActivityManager().isScheduledForToday(task)) {
return themeManager.getCurrentTheme().getColorRegistry().get(CommonThemes.COLOR_SCHEDULED_TODAY);
} else if (TasksUiPlugin.getTaskActivityManager().isScheduledForThisWeek(task)) {

Back to the top