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>
This commit is contained in:
Orgad Shaneh
2013-04-28 21:05:28 +03:00
committed by Orgad Shaneh
parent f1a622a779
commit 5383c4581c

View File

@@ -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);