diff --git a/linphone-app/ui/modules/Common/Animations/BusyIndicator.qml b/linphone-app/ui/modules/Common/Animations/BusyIndicator.qml index 7237db1d1..080a6aba4 100644 --- a/linphone-app/ui/modules/Common/Animations/BusyIndicator.qml +++ b/linphone-app/ui/modules/Common/Animations/BusyIndicator.qml @@ -64,10 +64,11 @@ BusyIndicator { Rectangle { x: item.width / 2 - width / 2 y: item.height / 2 - height / 2 + property real ratio : (3+index) / repeater.count - height: item.height / 3 - width: item.width / 3 - + height: item.height / 3 * ratio + width: item.width / 3 * ratio + opacity: ratio color: busyIndicator.color radius: (width > height ? width : height) / 2 diff --git a/linphone-app/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml b/linphone-app/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml index 98aaaa2ed..f74733d6a 100644 --- a/linphone-app/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml +++ b/linphone-app/ui/modules/Common/Styles/Animations/BusyIndicatorStyle.qml @@ -7,5 +7,5 @@ QtObject { property string sectionName: 'Busy' property color color: ColorsList.add(sectionName+'_indicator', 'i').color property int duration: 1250 - property int nSpheres: 6 + property int nSpheres: 8 } diff --git a/linphone-app/ui/views/App/Styles/Calls/WaitingRoomStyle.qml b/linphone-app/ui/views/App/Styles/Calls/WaitingRoomStyle.qml index d34f71f25..de3c642e9 100644 --- a/linphone-app/ui/views/App/Styles/Calls/WaitingRoomStyle.qml +++ b/linphone-app/ui/views/App/Styles/Calls/WaitingRoomStyle.qml @@ -134,12 +134,12 @@ QtObject { } */ property QtObject callError: QtObject { - property color color: ColorsList.add(sectionName+'_action_error', 'i').color + property color color: ColorsList.add(sectionName+'_action_error', 'q').color property int pointSize: Units.dp * 12 } property QtObject header: QtObject { property QtObject busyIndicator: QtObject { - property color color: ColorsList.add(sectionName+'_header_busy', 'i').color + property color color: ColorsList.add(sectionName+'_header_busy', 'q').color property int height: 20 property int width: 20 }