summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaroline Chao <caroline.chao@digia.com>2014-09-11 16:02:37 +0200
committerCaroline Chao <caroline.chao@digia.com>2014-09-12 08:28:03 +0200
commit47cd793c8e9cda31612d9648de6862daf506f19b (patch)
treefc77cbc54ca1af1395660f30ac514b603018e974
parent8627b5b26719f5cc2303e6c0b5c7375231186be8 (diff)
Fix font size for the breaks
+ small changes Change-Id: I96a9d513da365441403d16d73c8fc51863b14631 Reviewed-by: Niels Weber <niels.weber@digia.com>
-rw-r--r--qml/components/TrackSwitcher.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/qml/components/TrackSwitcher.qml b/qml/components/TrackSwitcher.qml
index 32f6f66..53b82e6 100644
--- a/qml/components/TrackSwitcher.qml
+++ b/qml/components/TrackSwitcher.qml
@@ -220,9 +220,9 @@ Item {
Text {
anchors.centerIn: parent
horizontalAlignment: Text.AlignHCenter
- font.pixelSize: 20
- text: name + "\n" + Qt.formatTime(start, "hh:mm") + " - " + Qt.formatTime(end, "hh:mm")
- color: Theme.colors.gray
+ font.pointSize: Theme.fonts.seven_pt
+ text: name + "\n" + Qt.formatTime(start, "h:mm") + " - " + Qt.formatTime(end, "h:mm")
+ color: Theme.colors.darkgray
}
}
}