Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.egit.ui/icons/obj16/new_tag_obj.gifbin0 -> 385 bytes
-rw-r--r--org.eclipse.egit.ui/plugin.xml6
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/UIIcons.java4
3 files changed, 7 insertions, 3 deletions
diff --git a/org.eclipse.egit.ui/icons/obj16/new_tag_obj.gif b/org.eclipse.egit.ui/icons/obj16/new_tag_obj.gif
new file mode 100644
index 0000000000..7bc6ad6ca3
--- /dev/null
+++ b/org.eclipse.egit.ui/icons/obj16/new_tag_obj.gif
Binary files differ
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index 5a2e112331..5a08320494 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -1555,7 +1555,7 @@
</separator>
<command
commandId="org.eclipse.egit.ui.RepositoriesViewCreateTag"
- icon="icons/obj16/tags.gif"
+ icon="icons/obj16/new_tag_obj.gif"
label="%RepoViewCreateTag.label"
style="push">
<visibleWhen
@@ -2906,7 +2906,7 @@
</image>
<image
commandId="org.eclipse.egit.ui.RepositoriesViewCreateTag"
- icon="icons/obj16/version_rep.gif">
+ icon="icons/obj16/new_tag_obj.gif">
</image>
<image
commandId="org.eclipse.egit.ui.team.ShowRepositoriesView"
@@ -2934,7 +2934,7 @@
</image>
<image
commandId="org.eclipse.egit.ui.history.CreateTag"
- icon="icons/obj16/version_rep.gif">
+ icon="icons/obj16/new_tag_obj.gif">
</image>
<image
commandId="org.eclipse.egit.ui.history.CheckoutCommand"
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/UIIcons.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/UIIcons.java
index b0da127077..96d51a0adc 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/UIIcons.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/UIIcons.java
@@ -140,6 +140,9 @@ public class UIIcons {
/** Tag icon */
public final static ImageDescriptor TAG;
+ /** Create Tag icon */
+ public final static ImageDescriptor CREATE_TAG;
+
/** Branch icon */
public final static ImageDescriptor BRANCH;
@@ -207,6 +210,7 @@ public class UIIcons {
OVR_CHECKEDOUT = map("ovr/checkedout_ov.gif"); //$NON-NLS-1$
TAGS = map("obj16/tags.gif"); //$NON-NLS-1$
TAG = map("obj16/version_rep.gif"); //$NON-NLS-1$
+ CREATE_TAG = map("obj16/new_tag_obj.gif"); //$NON-NLS-1$
BRANCH = map("obj16/branch_obj.gif"); //$NON-NLS-1$
CREATE_BRANCH = map("obj16/new_branch_obj.gif"); //$NON-NLS-1$
COLLAPSEALL = map("elcl16/collapseall.gif"); //$NON-NLS-1$

Back to the top