summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
}
}
}