diff --git a/linphone-app/ui/modules/Linphone/Camera/CameraView.qml b/linphone-app/ui/modules/Linphone/Camera/CameraView.qml index 0b9c89e10..6fc633376 100644 --- a/linphone-app/ui/modules/Linphone/Camera/CameraView.qml +++ b/linphone-app/ui/modules/Linphone/Camera/CameraView.qml @@ -155,9 +155,9 @@ Item{ } Rectangle{ visible: mainItem.currentDevice && mainItem.currentDevice.isMuted - anchors.left: parent.left + anchors.right: parent.right anchors.top: parent.top - anchors.leftMargin: 15 + anchors.rightMargin: 15 anchors.topMargin: 15 height: CameraViewStyle.isMuted.button.iconSize width: height @@ -170,25 +170,4 @@ Item{ iconSize: CameraViewStyle.isMuted.button.iconSize } } - - Rectangle{ - visible: (mainItem.callModel && !mainItem.callModel.videoEnabled) || - (mainItem.currentDevice && !mainItem.currentDevice.videoEnabled) - anchors.right: parent.right - anchors.top: parent.top - anchors.rightMargin: 15 - anchors.topMargin: 15 - height: CameraViewStyle.isAudioOnly.button.iconSize - width: height - radius: width/2 - color: CameraViewStyle.isAudioOnly.button.backgroundNormalColor - Icon{ - anchors.centerIn: parent - icon: CameraViewStyle.isAudioOnly.button.icon - overwriteColor: CameraViewStyle.isAudioOnly.button.foregroundNormalColor - iconSize: CameraViewStyle.isAudioOnly.button.iconSize - } - } - - } diff --git a/linphone-app/ui/modules/Linphone/Styles/Camera/CameraViewStyle.qml b/linphone-app/ui/modules/Linphone/Styles/Camera/CameraViewStyle.qml index 0da8caf62..45f29235f 100644 --- a/linphone-app/ui/modules/Linphone/Styles/Camera/CameraViewStyle.qml +++ b/linphone-app/ui/modules/Linphone/Styles/Camera/CameraViewStyle.qml @@ -51,9 +51,9 @@ QtObject { } } property QtObject isMuted: QtObject{ - property color backgroundColor : ColorsList.add(sectionName+'_isMuted_bg', 'l').color + property color backgroundColor : ColorsList.add(sectionName+'_isMuted_bg', 'j').color property QtObject button: QtObject { - property int iconSize: 40 + property int iconSize: 30 property string icon : 'micro_off_custom' property string name : 'isMuted' property color backgroundNormalColor : ColorsList.addImageColor(sectionName+'_'+name+'_bg', icon, 's_d_b_bg').color @@ -61,9 +61,9 @@ QtObject { } } property QtObject isAudioOnly: QtObject{ - property color backgroundColor : ColorsList.add(sectionName+'_isAudioOnly_bg', 'l').color + property color backgroundColor : ColorsList.add(sectionName+'_isAudioOnly_bg', 'j').color property QtObject button: QtObject { - property int iconSize: 40 + property int iconSize: 30 property string icon : 'conference_audio_only_custom' property string name : 'isAudioOnly' property color backgroundNormalColor : ColorsList.addImageColor(sectionName+'_'+name+'_bg', icon, 's_d_b_bg').color