mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Set Label text color explicitly
This commit is contained in:
parent
13a280df13
commit
1c4a86e502
3 changed files with 5 additions and 0 deletions
|
@ -38,6 +38,7 @@ Rectangle {
|
||||||
Layout.leftMargin: 8
|
Layout.leftMargin: 8
|
||||||
font.pointSize: fontMetrics.font.pointSize * 1.1
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
||||||
text: CallManager.callParty
|
text: CallManager.callParty
|
||||||
|
color: colors.windowText
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
|
@ -51,6 +52,7 @@ Rectangle {
|
||||||
id: callStateLabel
|
id: callStateLabel
|
||||||
|
|
||||||
font.pointSize: fontMetrics.font.pointSize * 1.1
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
||||||
|
color: colors.windowText
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
|
|
@ -42,6 +42,7 @@ Rectangle {
|
||||||
Layout.leftMargin: 8
|
Layout.leftMargin: 8
|
||||||
font.pointSize: fontMetrics.font.pointSize * 1.1
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
||||||
text: CallManager.callParty
|
text: CallManager.callParty
|
||||||
|
color: windowText
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
|
@ -54,6 +55,7 @@ Rectangle {
|
||||||
Label {
|
Label {
|
||||||
font.pointSize: fontMetrics.font.pointSize * 1.1
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
||||||
text: CallManager.isVideo ? qsTr("Video Call") : qsTr("Voice Call")
|
text: CallManager.isVideo ? qsTr("Video Call") : qsTr("Voice Call")
|
||||||
|
color: windowText
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
|
|
@ -31,6 +31,7 @@ ApplicationWindow {
|
||||||
Label {
|
Label {
|
||||||
font.pointSize: fontMetrics.font.pointSize * 1.1
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
||||||
text: qsTr("Place a call to ") + TimelineManager.timeline.roomName + "?"
|
text: qsTr("Place a call to ") + TimelineManager.timeline.roomName + "?"
|
||||||
|
color: windowText
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
|
Loading…
Reference in a new issue