Set Label text color explicitly

pull/356/head
trilene 4 years ago committed by Nicolas Werner
parent 13a280df13
commit 1c4a86e502
  1. 2
      resources/qml/voip/ActiveCallBar.qml
  2. 2
      resources/qml/voip/CallInviteBar.qml
  3. 1
      resources/qml/voip/PlaceCall.qml

@ -38,6 +38,7 @@ Rectangle {
Layout.leftMargin: 8
font.pointSize: fontMetrics.font.pointSize * 1.1
text: CallManager.callParty
color: colors.windowText
}
Image {
@ -51,6 +52,7 @@ Rectangle {
id: callStateLabel
font.pointSize: fontMetrics.font.pointSize * 1.1
color: colors.windowText
}
Item {

@ -42,6 +42,7 @@ Rectangle {
Layout.leftMargin: 8
font.pointSize: fontMetrics.font.pointSize * 1.1
text: CallManager.callParty
color: windowText
}
Image {
@ -54,6 +55,7 @@ Rectangle {
Label {
font.pointSize: fontMetrics.font.pointSize * 1.1
text: CallManager.isVideo ? qsTr("Video Call") : qsTr("Voice Call")
color: windowText
}
Item {

@ -31,6 +31,7 @@ ApplicationWindow {
Label {
font.pointSize: fontMetrics.font.pointSize * 1.1
text: qsTr("Place a call to ") + TimelineManager.timeline.roomName + "?"
color: windowText
}
Item {

Loading…
Cancel
Save