From 327618cc0cafd176cfdd6d70e247e4d451b74e87 Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Fri, 26 Jun 2026 13:00:02 +0200 Subject: [PATCH] fix(apps/amm): ensure changing endpoint works --- apps/amm/qml/Main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/amm/qml/Main.qml b/apps/amm/qml/Main.qml index 792f011..1250bbc 100644 --- a/apps/amm/qml/Main.qml +++ b/apps/amm/qml/Main.qml @@ -45,7 +45,7 @@ Item { height: show ? 32 : 0 visible: height > 0 clip: true - color: Theme.palette.warning + color: Theme.palette.error Behavior on height { NumberAnimation { duration: 150; easing.type: Easing.OutCubic } } @@ -56,7 +56,7 @@ Item { elide: Text.ElideMiddle font.pixelSize: 12 font.weight: Font.Medium - color: Theme.palette.background + color: Theme.palette.text text: qsTr("Unable to connect to network") } }