Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2013-11-18 11:26:21 +0000
committerLars Vogel2013-11-18 11:26:21 +0000
commit67c0e6e9e23094227e024f1e3e57181c8dc04c47 (patch)
treeae8ffb6c433945cf9eb04cb41081f7923a8252ab
parentdb683aa42ed03ff3d7ad2312677554c4ef54b552 (diff)
downloadeclipse.platform.ui-67c0e6e9e23094227e024f1e3e57181c8dc04c47.tar.gz
eclipse.platform.ui-67c0e6e9e23094227e024f1e3e57181c8dc04c47.tar.xz
eclipse.platform.ui-67c0e6e9e23094227e024f1e3e57181c8dc04c47.zip
Bug 387579 - [EditorMgmt] [regression] No indication/decoration for
pinned editor Fixes the link to org.eclipse.ui for the image Change-Id: I19b2960b891932259bcbde57759fe5e14c7a4126 Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.e4.ui.workbench.renderers.swt/icons/full/ovr16/pinned_ovr.gifbin0 -> 117 bytes
-rw-r--r--bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SWTPartRenderer.java2
2 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench.renderers.swt/icons/full/ovr16/pinned_ovr.gif b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/icons/full/ovr16/pinned_ovr.gif
new file mode 100644
index 00000000000..2f3b201a63e
--- /dev/null
+++ b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/icons/full/ovr16/pinned_ovr.gif
Binary files differ
diff --git a/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SWTPartRenderer.java b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SWTPartRenderer.java
index aaf677343ec..40c242787a4 100644
--- a/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SWTPartRenderer.java
+++ b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SWTPartRenderer.java
@@ -42,7 +42,7 @@ public abstract class SWTPartRenderer extends AbstractPartRenderer {
Map<String, Image> imageMap = new HashMap<String, Image>();
- String pinURI = "platform:/plugin/org.eclipse.ui/icons/full/ovr16/pinned_ovr.gif"; //$NON-NLS-1$
+ String pinURI = "platform:/plugin/org.eclipse.e4.ui.workbench.renderers.swt/icons/full/ovr16/pinned_ovr.gif"; //$NON-NLS-1$
Image pinImage;
private ISWTResourceUtilities resUtils;

Back to the top