From 99b99cc4429ea1a15a089a8b20e156578764355c Mon Sep 17 00:00:00 2001 From: eshe Date: Sat, 16 Oct 2010 00:16:04 +0100 Subject: [PATCH] Detail screen font switched to same it was before PR1.3. --- debian/changelog | 6 ++++++ src/detailscreen.cpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index abec158..129e6bb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +jspeed (0.1-9) unstable; urgency=low + + * Fixed detail screen font which was automatically changed in PR1.3. + + -- Jesse Hakanen Sat, 30 Oct 2010 10:48:52 +0100 + jspeed (0.1-8) unstable; urgency=low * Fixed a bug that caused altitude display to show in wrong color. diff --git a/src/detailscreen.cpp b/src/detailscreen.cpp index 7ef6f10..fc307b1 100644 --- a/src/detailscreen.cpp +++ b/src/detailscreen.cpp @@ -189,7 +189,7 @@ QGraphicsTextItem* DetailScreen::createItem(QString const& text) { QGraphicsTextItem* item = new QGraphicsTextItem(text); QFont font(FONT, FONT_SIZE); - font.setBold(true); + font.setBold(false); item->setFont(font); item->setDefaultTextColor(QColor(DEFAULT_COLOR)); item->setZValue(999); -- 1.7.9.5