Detail screen font switched to same it was before PR1.3.
authoreshe <jessehakanen@gmail.com>
Fri, 15 Oct 2010 23:16:04 +0000 (00:16 +0100)
committereshe <jessehakanen@gmail.com>
Fri, 15 Oct 2010 23:16:04 +0000 (00:16 +0100)
debian/changelog
src/detailscreen.cpp

index abec158..129e6bb 100644 (file)
@@ -1,3 +1,9 @@
+jspeed (0.1-9) unstable; urgency=low
+
+  * Fixed detail screen font which was automatically changed in PR1.3.
+
+ -- Jesse Hakanen <jessehakanen@gmail.com>  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.
index 7ef6f10..fc307b1 100644 (file)
@@ -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);