Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/history/CommitGraphTable.java')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/history/CommitGraphTable.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/history/CommitGraphTable.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/history/CommitGraphTable.java
index f7bc1b3418..d55e58c9bc 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/history/CommitGraphTable.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/history/CommitGraphTable.java
@@ -753,6 +753,9 @@ class CommitGraphTable {
HistoryViewCommands.CREATE_PATCH,
UIText.GitHistoryPage_CreatePatchMenuLabel));
popupMgr.add(getCommandContributionItem(
+ HistoryViewCommands.CHERRYPICK,
+ UIText.GitHistoryPage_cherryPickMenuItem));
+ popupMgr.add(getCommandContributionItem(
HistoryViewCommands.MERGE,
UIText.GitHistoryPage_mergeMenuItem));
popupMgr.add(getCommandContributionItem(
@@ -778,9 +781,6 @@ class CommitGraphTable {
popupMgr.add(new Separator());
- popupMgr.add(getCommandContributionItem(
- HistoryViewCommands.CHERRYPICK,
- UIText.GitHistoryPage_cherryPickMenuItem));
popupMgr.add(getCommandContributionItem(HistoryViewCommands.REVERT,
UIText.GitHistoryPage_revertMenuItem));

Back to the top