From 8addc1375dd4fb4203008e827f6c2dbd136dc743 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Tue, 28 Mar 2023 13:18:07 +0200 Subject: [PATCH] Chat's BusyIndicator was white (on white). Update its color to be visible. --- CHANGELOG.md | 1 + linphone-app/ui/views/App/Main/Conversation.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67502be44..ecd5dcd72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Fixed - Fix using only username in URI handlers. - Chat flickering on load. +- Color of busy indicator when the chat is loading. - Update SDK to 5.2.42 ## 5.0.14 - 2023-03-16 diff --git a/linphone-app/ui/views/App/Main/Conversation.qml b/linphone-app/ui/views/App/Main/Conversation.qml index dc553985e..7b0c0e30e 100644 --- a/linphone-app/ui/views/App/Main/Conversation.qml +++ b/linphone-app/ui/views/App/Main/Conversation.qml @@ -576,6 +576,7 @@ ColumnLayout { anchors.left: filterButtons.right anchors.leftMargin: 50 anchors.verticalCenter: parent.verticalCenter + color: BusyIndicatorStyle.alternateColor running: chatArea.tryingToLoadMoreEntries }