summary refs log tree commit diff
diff options
context:
space:
mode:
authortrilene <trilene@runbox.com>2020-12-20 17:12:42 -0500
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-07 14:04:54 +0100
commit1c4a86e502a1e57cf359ff8528fadf203c6ce027 (patch)
tree71150ca67d668b50de7b313093209a81e5a44aee
parentFinesse PlaceCall dialog (diff)
downloadnheko-1c4a86e502a1e57cf359ff8528fadf203c6ce027.tar.xz
Set Label text color explicitly
-rw-r--r--resources/qml/voip/ActiveCallBar.qml2
-rw-r--r--resources/qml/voip/CallInviteBar.qml2
-rw-r--r--resources/qml/voip/PlaceCall.qml1
3 files changed, 5 insertions, 0 deletions
diff --git a/resources/qml/voip/ActiveCallBar.qml b/resources/qml/voip/ActiveCallBar.qml

index 1683df6a..86fe37f6 100644 --- a/resources/qml/voip/ActiveCallBar.qml +++ b/resources/qml/voip/ActiveCallBar.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 { diff --git a/resources/qml/voip/CallInviteBar.qml b/resources/qml/voip/CallInviteBar.qml
index 43aa93b8..3b40d394 100644 --- a/resources/qml/voip/CallInviteBar.qml +++ b/resources/qml/voip/CallInviteBar.qml
@@ -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 { diff --git a/resources/qml/voip/PlaceCall.qml b/resources/qml/voip/PlaceCall.qml
index c047e625..99b82046 100644 --- a/resources/qml/voip/PlaceCall.qml +++ b/resources/qml/voip/PlaceCall.qml
@@ -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 {