Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-11-08 22:00:00 +0000
committermkersten2005-11-08 22:00:00 +0000
commit264f32e4ba1a1af456a234c343a26b0cdbf5be5d (patch)
treebfae6ea483a17a54e68b6f3939a3b9982087f64d
parentd6c7513f88d8e2db0b045182a069f6951f595167 (diff)
downloadorg.eclipse.mylyn.tasks-264f32e4ba1a1af456a234c343a26b0cdbf5be5d.tar.gz
org.eclipse.mylyn.tasks-264f32e4ba1a1af456a234c343a26b0cdbf5be5d.tar.xz
org.eclipse.mylyn.tasks-264f32e4ba1a1af456a234c343a26b0cdbf5be5d.zip
Fixed Bugzilla Bug 113476: improve gradient highlighters
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/AbstractBugEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/AbstractBugEditor.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/AbstractBugEditor.java
index f73dfdfc1..484b99962 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/AbstractBugEditor.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/editor/AbstractBugEditor.java
@@ -1114,7 +1114,7 @@ public abstract class AbstractBugEditor extends EditorPart implements Listener {
* elements which can change).
*/
protected void setGeneralTitleText() {
- String text = "[Open in Browser]";
+ String text = "[Open in New Browser]";
linkToBug.setText(text);
linkToBug.setFont(TEXT_FONT);
if (this instanceof ExistingBugEditor) {

Back to the top