From a7022bc0cce312af35735345702df50dd85c4dc8 Mon Sep 17 00:00:00 2001 From: gaelle Date: Tue, 3 Mar 2026 08:40:49 +0100 Subject: [PATCH] fix glitching images on buttons --- Linphone/view/Control/Container/VerticalTabBar.qml | 1 - Linphone/view/Control/Display/EffectImage.qml | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Linphone/view/Control/Container/VerticalTabBar.qml b/Linphone/view/Control/Container/VerticalTabBar.qml index cad6ac008..a57b1b7a6 100644 --- a/Linphone/view/Control/Container/VerticalTabBar.qml +++ b/Linphone/view/Control/Container/VerticalTabBar.qml @@ -137,7 +137,6 @@ Control.TabBar { } Text { id: buttonText - visible: buttonIcon.isImageReady text: modelData.label font { weight: mainItem.currentIndex === index diff --git a/Linphone/view/Control/Display/EffectImage.qml b/Linphone/view/Control/Display/EffectImage.qml index 9a406f80d..908238e60 100644 --- a/Linphone/view/Control/Display/EffectImage.qml +++ b/Linphone/view/Control/Display/EffectImage.qml @@ -17,11 +17,13 @@ Item { property bool useColor: colorizationColor != undefined property bool shadowEnabled: false property bool isImageReady: false + property bool retainWhileLoading: true Image { id: image visible: !effect2.effectEnabled source: mainItem.imageSource fillMode: mainItem.fillMode + retainWhileLoading: mainItem.retainWhileLoading sourceSize.width: width sourceSize.height: height width: mainItem.imageWidth