aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/logchangedialog.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2013-04-28 21:05:28 +0300
committerOrgad Shaneh <orgads@gmail.com>2013-04-29 12:38:04 +0200
commit5383c4581cee19160170525f6deea196ea38bf21 (patch)
tree0046cb5196c39792aca86f5f2578a0dbe786b6dd /src/plugins/git/logchangedialog.cpp
parentf1a622a7792ff78e4128d753cd5ebe98144561d4 (diff)
Git: Use bold instead of italic for decorated commits
Italic is harder to read, especially when there are many of them Change-Id: I15bf054356a996308820e5c7969041933aeb538a Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/git/logchangedialog.cpp')
-rw-r--r--src/plugins/git/logchangedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/logchangedialog.cpp b/src/plugins/git/logchangedialog.cpp
index b9be1c3b36..7dce599b57 100644
--- a/src/plugins/git/logchangedialog.cpp
+++ b/src/plugins/git/logchangedialog.cpp
@@ -141,7 +141,7 @@ bool LogChangeDialog::populateLog(const QString &repository)
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable);
if (line.endsWith(QLatin1Char(')'))) {
QFont font = item->font();
- font.setItalic(true);
+ font.setBold(true);
item->setFont(font);
}
row.push_back(item);