From adcea968689a31f244da8a31c702a3cb1171e14f Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Sat, 23 Nov 2019 21:20:02 +0200 Subject: [PATCH] Git: Rename Show Diff -> Diff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I5b04edb6661cde53003a8cfe72854b4c214e187e Reviewed-by: André Hartmann Reviewed-by: Tobias Hunger --- src/plugins/git/gitclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index 1260f865c50..00a7f65bbd7 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -613,7 +613,7 @@ public: GitLogArgumentsWidget(VcsBaseClientSettings &settings, bool fileRelated, QToolBar *toolBar) : BaseGitDiffArgumentsWidget(settings, toolBar) { - QAction *diffButton = addToggleButton("--patch", tr("Show Diff"), + QAction *diffButton = addToggleButton("--patch", tr("Diff"), tr("Show difference.")); mapSetting(diffButton, settings.boolPointer(GitSettings::logDiffKey)); connect(diffButton, &QAction::toggled, m_patienceButton, &QAction::setVisible);