aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2020-02-19 18:44:23 +0200
committerOrgad Shaneh <orgads@gmail.com>2020-02-19 17:48:19 +0000
commitdec81133778ed11ae7b8d4672e7fe4dcff032334 (patch)
tree0ffa71c8c95299c42dcc30cd301e49fed5aab829 /src/plugins/git
parentbbf5ff61eab57934d92008350093424cc9a1116e (diff)
Git: Fix accelerator for reflog
R is already used for Rebase. Change-Id: I64575c98bf22aef0a2825b68b1c9a92061821923 Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'src/plugins/git')
-rw-r--r--src/plugins/git/branchview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/branchview.cpp b/src/plugins/git/branchview.cpp
index 83c6a8cd65..03e434ff87 100644
--- a/src/plugins/git/branchview.cpp
+++ b/src/plugins/git/branchview.cpp
@@ -240,7 +240,7 @@ void BranchView::slotCustomContextMenu(const QPoint &point)
GitPlugin::client()->diffBranch(m_repository, fullName);
});
contextMenu.addAction(tr("&Log"), this, [this] { log(selectedIndex()); });
- contextMenu.addAction(tr("&Reflog"), this, [this] { reflog(selectedIndex()); });
+ contextMenu.addAction(tr("Reflo&g"), this, [this] { reflog(selectedIndex()); });
contextMenu.addSeparator();
if (!currentSelected) {
auto resetMenu = new QMenu(tr("Re&set"), &contextMenu);