Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2011-05-03 20:29:14 +0000
committerKevin Sawicki2011-05-03 20:29:14 +0000
commit2b5e376932e3fb9a60ae4886b3f4efeb3a5ef38c (patch)
tree0e917ebe7a4fb95230de957c1174fcdfd83947d5 /org.eclipse.egit.ui/plugin.xml
parente1971b1e5c1e5c3c3c81ca23a854eb0a6d50a6c3 (diff)
downloadegit-2b5e376932e3fb9a60ae4886b3f4efeb3a5ef38c.tar.gz
egit-2b5e376932e3fb9a60ae4886b3f4efeb3a5ef38c.tar.xz
egit-2b5e376932e3fb9a60ae4886b3f4efeb3a5ef38c.zip
[repoView] Add commit message decorations to ref nodes.
Bug: 344639 Change-Id: I70a5c1afb2d65581e90642f726625ad0b670cceb Signed-off-by: Kevin Sawicki <kevin@github.com>
Diffstat (limited to 'org.eclipse.egit.ui/plugin.xml')
-rw-r--r--org.eclipse.egit.ui/plugin.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index 5d601a9fed..5a2e112331 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -2314,6 +2314,11 @@
style="toggle"
tooltip="%RepoViewHierarchicalBranchRepresenation.tooltip">
</command>
+ <command
+ commandId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit"
+ style="toggle"
+ tooltip="%RepoViewBranchCommit.tooltip">
+ </command>
</menuContribution>
<menuContribution
locationURI="menu:org.eclipse.egit.ui.RepositoriesView">
@@ -2355,6 +2360,11 @@
label="%HierarchyLayout.label"
style="toggle">
</command>
+ <command
+ commandId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit"
+ label="%BranchCommit.label"
+ style="toggle">
+ </command>
</menuContribution>
<menuContribution
locationURI="popup:org.eclipse.ui.popup.any?after=additions">
@@ -2841,6 +2851,16 @@
id="org.eclipse.ui.commands.toggleState">
</state>
</command>
+ <command
+ categoryId="org.eclipse.egit.ui.commandCategory"
+ defaultHandler="org.eclipse.egit.ui.internal.repository.tree.command.ToggleBranchCommitCommand"
+ id="org.eclipse.egit.ui.RepositoriesToggleBranchCommit"
+ name="%ToggleBranchCommitCommand.name">
+ <state
+ class="org.eclipse.ui.handlers.RegistryToggleState:false"
+ id="org.eclipse.ui.commands.toggleState">
+ </state>
+ </command>
<command
categoryId="org.eclipse.egit.ui.commandCategory"
defaultHandler="org.eclipse.egit.ui.internal.commands.shared.RebaseCurrentRefCommand"
@@ -2956,6 +2976,10 @@
commandId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy"
icon="icons/elcl16/hierarchicalLayout.gif">
</image>
+ <image
+ commandId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit"
+ icon="icons/obj16/changelog_obj.gif">
+ </image>
<image
commandId="org.eclipse.egit.ui.RepositoriesViewRemove"
icon="icons/obj16/clear.gif">

Back to the top