From 5f131da1669351a5a1b20b54d2ce65f18d08f39b Mon Sep 17 00:00:00 2001 From: Orgad Shaneh <orgad.shaneh@audiocodes.com> Date: Mon, 1 Jul 2013 16:22:54 +0300 Subject: [PATCH] DiffEditor: Show tags and branches in Show pane Change-Id: I39be7c3fb9b57b133c4da3639813527aa280ae33 Reviewed-by: Jarek Kobus <jaroslaw.kobus@digia.com> --- src/plugins/git/gitclient.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index 0f0041026ff..cccabafd1f1 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -259,7 +259,8 @@ void GitDiffHandler::collectShowDescription(const QString &id) VcsBase::Command *command = new VcsBase::Command(m_gitPath, m_workingDirectory, m_processEnvironment); connect(command, SIGNAL(outputData(QByteArray)), this, SLOT(slotShowDescriptionReceived(QByteArray))); QStringList arguments; - arguments << QLatin1String("show") << QLatin1String("-s") << QLatin1String("--format=fuller") << id; + arguments << QLatin1String("show") << QLatin1String("-s") << QLatin1String("--format=fuller") + << QLatin1String(noColorOption) << QLatin1String(decorateOption) << id; command->addJob(arguments, m_timeout); command->execute(); } -- GitLab