From a1b682e637a4fc359fce6e3b96afe1301358dfd3 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Fri, 6 Mar 2026 09:29:38 +0100 Subject: [PATCH] hide vertical tab buttons texts until the associated image is ready for the first time --- Linphone/view/Control/Container/VerticalTabBar.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Linphone/view/Control/Container/VerticalTabBar.qml b/Linphone/view/Control/Container/VerticalTabBar.qml index a57b1b7a6..b51f01861 100644 --- a/Linphone/view/Control/Container/VerticalTabBar.qml +++ b/Linphone/view/Control/Container/VerticalTabBar.qml @@ -89,7 +89,6 @@ Control.TabBar { Control.TabButton { id: tabButton width: mainItem.width - height: visible && buttonIcon.isImageReady ? undefined : 0 bottomInset: Utils.getSizeWithScreenRatio(32) topInset: Utils.getSizeWithScreenRatio(32) hoverEnabled: true @@ -134,10 +133,12 @@ Control.TabBar { fillMode: Image.PreserveAspectFit colorizationColor: DefaultStyle.grey_0 useColor: !modelData.colored + onStatusChanged: if (status === Image.Ready && !buttonText.visible) buttonText.visible = true } Text { id: buttonText text: modelData.label + visible: false font { weight: mainItem.currentIndex === index ? Utils.getSizeWithScreenRatio(800)