Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaSeeAlsoAttributeEditor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaSeeAlsoAttributeEditor.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaSeeAlsoAttributeEditor.java
index 9c120522b..e5b390d30 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaSeeAlsoAttributeEditor.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaSeeAlsoAttributeEditor.java
@@ -77,8 +77,8 @@ public class BugzillaSeeAlsoAttributeEditor extends AbstractAttributeEditor {
setControl(seeAlsoTable);
}
- private final String[] seeAlsoColumns = {
- "", Messages.BugzillaSeeAlsoAttributeEditor_Remove, Messages.BugzillaSeeAlsoAttributeEditor_URL }; //$NON-NLS-1$
+ private final String[] seeAlsoColumns = { "", Messages.BugzillaSeeAlsoAttributeEditor_Remove, //$NON-NLS-1$
+ Messages.BugzillaSeeAlsoAttributeEditor_URL };
private final int[] seeAlsoColumnWidths = { 25, 60, 100 };
@@ -123,7 +123,7 @@ public class BugzillaSeeAlsoAttributeEditor extends AbstractAttributeEditor {
public Image getColumnImage(Object element, int columnIndex) {
String value = (String) element;
if (columnIndex == 0) {
- if (value.contains("/r/#/c/")) { //$NON-NLS-1$
+ if (value.contains("/r/#/c/") || value.contains("git.eclipse.org/r/")) { //$NON-NLS-1$ //$NON-NLS-2$
return CommonImages.getImage(BugzillaImages.GERRIT);
} else if (value.contains("/commit/?id=")) { //$NON-NLS-1$
return CommonImages.getImage(BugzillaImages.GIT);

Back to the top