summary refs log tree commit diff
path: root/resources/qml/voip/DeviceError.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-05-13 08:23:56 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-05-13 08:23:56 +0200
commita7f8b23b524c5e3af72e42fde118706e94a454f3 (patch)
treec3918f64578ee97b89dba41ae169baea09a061e6 /resources/qml/voip/DeviceError.qml
parentFix warning on gcc11 (diff)
downloadnheko-a7f8b23b524c5e3af72e42fde118706e94a454f3.tar.xz
Make palette global in Qml
Diffstat (limited to 'resources/qml/voip/DeviceError.qml')
-rw-r--r--resources/qml/voip/DeviceError.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/qml/voip/DeviceError.qml b/resources/qml/voip/DeviceError.qml

index 05cfd409..47ded50a 100644 --- a/resources/qml/voip/DeviceError.qml +++ b/resources/qml/voip/DeviceError.qml
@@ -24,19 +24,19 @@ Popup { Image { Layout.preferredWidth: 16 Layout.preferredHeight: 16 - source: "image://colorimage/" + image + "?" + colors.windowText + source: "image://colorimage/" + image + "?" + Nheko.colors.windowText } Label { text: errorString - color: colors.windowText + color: Nheko.colors.windowText } } background: Rectangle { - color: colors.window - border.color: colors.windowText + color: Nheko.colors.window + border.color: Nheko.colors.windowText } }