Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2007-03-29 20:30:10 +0000
committermkersten2007-03-29 20:30:10 +0000
commit9400723556801d0c6e613c2f0f05922efd06a231 (patch)
tree198159074a1ff09ed63831f8e570496982180bab
parent59d563cf9defb8eaf0cf12c12f6d1ee764bfc3fd (diff)
downloadorg.eclipse.mylyn.tasks-9400723556801d0c6e613c2f0f05922efd06a231.tar.gz
org.eclipse.mylyn.tasks-9400723556801d0c6e613c2f0f05922efd06a231.tar.xz
org.eclipse.mylyn.tasks-9400723556801d0c6e613c2f0f05922efd06a231.zip
RESOLVED - bug 180028: add icons to attachments table
https://bugs.eclipse.org/bugs/show_bug.cgi?id=180028
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AttachmentTableLabelProvider.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AttachmentTableLabelProvider.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AttachmentTableLabelProvider.java
index 430746639..c00d7be76 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AttachmentTableLabelProvider.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AttachmentTableLabelProvider.java
@@ -61,7 +61,7 @@ public class AttachmentTableLabelProvider extends DecoratingLabelProvider implem
RepositoryAttachment attachment = (RepositoryAttachment) element;
switch (columnIndex) {
case 0:
- return attachment.getDescription();
+ return " " + attachment.getDescription();
case 1:
if (attachment.isPatch()) {
return "patch";

Back to the top