Commit bf4f7bf4 authored by m2ko's avatar m2ko

pointSize to pixelSize

parent 473f44f3
...@@ -51,11 +51,13 @@ Item { ...@@ -51,11 +51,13 @@ Item {
id: topText id: topText
visible: switcherModel.itemCount === 0 visible: switcherModel.itemCount === 0
width: noAppsLabel.width width: noAppsLabel.width
height: Theme.itemHeightMedium
anchors { anchors {
top: parent.top
topMargin:Theme.itemSpacingLarge
horizontalCenter: parent.horizontalCenter horizontalCenter: parent.horizontalCenter
topMargin: Theme.itemSpacingLarge
} }
color: "black" color: "transparent"
Label { Label {
id: noAppsLabel id: noAppsLabel
...@@ -65,7 +67,7 @@ Item { ...@@ -65,7 +67,7 @@ Item {
left: parent.left left: parent.left
} }
font.weight: Font.Light font.weight: Font.Light
font.pointSize: Theme.fontSizeTiny font.pixelSize: Theme.fontSizeExtraLarge
} }
} }
Flickable { Flickable {
......
...@@ -59,7 +59,7 @@ Flickable { ...@@ -59,7 +59,7 @@ Flickable {
id: displayDayOfWeek id: displayDayOfWeek
text: Qt.formatDateTime(wallClock.time, "dddd") + ", " text: Qt.formatDateTime(wallClock.time, "dddd") + ", "
color: Theme.textColor color: Theme.textColor
font.pointSize: Theme.fontSizeTiny / 1.5 font.pixelSize: Theme.fontSizeExtraLarge
font.weight: Font.Bold font.weight: Font.Bold
anchors { anchors {
top: parent.top top: parent.top
...@@ -71,7 +71,7 @@ Flickable { ...@@ -71,7 +71,7 @@ Flickable {
Label { Label {
id: displayCurrentDate id: displayCurrentDate
text: Qt.formatDate(wallClock.time, "d MMMM yyyy") text: Qt.formatDate(wallClock.time, "d MMMM yyyy")
font.pointSize: Theme.fontSizeTiny / 1.5 font.pixelSize: Theme.fontSizeExtraLarge
color: Theme.textColor color: Theme.textColor
font.weight: Font.Light font.weight: Font.Light
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
......
...@@ -25,7 +25,7 @@ Rectangle { ...@@ -25,7 +25,7 @@ Rectangle {
Text { Text {
id: timeDisplay id: timeDisplay
font.pointSize: Theme.fontSizeExtraLarge font.pixelSize: Theme.fontSizeExtraLarge * 2
font.weight: Font.Light font.weight: Font.Light
lineHeight: 0.85 lineHeight: 0.85
color: Theme.textColor color: Theme.textColor
...@@ -51,7 +51,7 @@ Rectangle { ...@@ -51,7 +51,7 @@ Rectangle {
Label { Label {
id: weekdayDisplay id: weekdayDisplay
font.pointSize: Theme.fontSizeTiny / 1.5 font.pixelSize: Theme.fontSizeLarge
color: Theme.textColor color: Theme.textColor
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
font.weight: Font.Bold font.weight: Font.Bold
...@@ -65,7 +65,7 @@ Rectangle { ...@@ -65,7 +65,7 @@ Rectangle {
Label { Label {
id: dateDisplay id: dateDisplay
font.pointSize: Theme.fontSizeTiny / 1.5 font.pixelSize: Theme.fontSizeLarge
color: Theme.textColor color: Theme.textColor
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
font.weight: Font.Light font.weight: Font.Light
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment