diff --git a/Linphone/view/Control/Display/Contact/Avatar.qml b/Linphone/view/Control/Display/Contact/Avatar.qml index 9fd751c17..14c2c68cd 100644 --- a/Linphone/view/Control/Display/Contact/Avatar.qml +++ b/Linphone/view/Control/Display/Contact/Avatar.qml @@ -170,7 +170,7 @@ Loader{ width: stackView.width/2 height: width colorizationColor: DefaultStyle.main2_600 - imageSource: mainItem.isConference ? AppIcons.usersThree : AppIcons.profile + imageSource: mainItem.isConference ? AppIcons.videoconference : AppIcons.profile anchors.centerIn: parent } } diff --git a/Linphone/view/Control/Display/Meeting/MeetingListView.qml b/Linphone/view/Control/Display/Meeting/MeetingListView.qml index 0026c0021..642355aad 100644 --- a/Linphone/view/Control/Display/Meeting/MeetingListView.qml +++ b/Linphone/view/Control/Display/Meeting/MeetingListView.qml @@ -263,7 +263,7 @@ ListView { RowLayout { spacing: Utils.getSizeWithScreenRatio(8) EffectImage { - imageSource: AppIcons.usersThree + imageSource: AppIcons.videoconference colorizationColor: DefaultStyle.main2_600 Layout.preferredWidth: Utils.getSizeWithScreenRatio(24) Layout.preferredHeight: Utils.getSizeWithScreenRatio(24) diff --git a/Linphone/view/Page/Form/Meeting/MeetingForm.qml b/Linphone/view/Page/Form/Meeting/MeetingForm.qml index 907dcd90f..217ae65b0 100644 --- a/Linphone/view/Page/Form/Meeting/MeetingForm.qml +++ b/Linphone/view/Page/Form/Meeting/MeetingForm.qml @@ -35,7 +35,7 @@ FocusScope { spacing: Utils.getSizeWithScreenRatio(18) CheckableButton { Layout.preferredWidth: Utils.getSizeWithScreenRatio(151) - icon.source: AppIcons.usersThree + icon.source: AppIcons.videoconference icon.width: Utils.getSizeWithScreenRatio(24) icon.height: Utils.getSizeWithScreenRatio(24) enabled: false @@ -63,7 +63,7 @@ FocusScope { content: RowLayout { spacing: Utils.getSizeWithScreenRatio(8) EffectImage { - imageSource: AppIcons.usersThree + imageSource: AppIcons.videoconference colorizationColor: DefaultStyle.main2_600 width: Utils.getSizeWithScreenRatio(24) height: Utils.getSizeWithScreenRatio(24) @@ -265,7 +265,7 @@ FocusScope { contentItem: RowLayout { spacing: Utils.getSizeWithScreenRatio(8) EffectImage { - imageSource: AppIcons.usersThree + imageSource: AppIcons.videoconference colorizationColor: DefaultStyle.main2_600 Layout.preferredWidth: Utils.getSizeWithScreenRatio(24) Layout.preferredHeight: Utils.getSizeWithScreenRatio(24) diff --git a/Linphone/view/Page/Main/Meeting/MeetingPage.qml b/Linphone/view/Page/Main/Meeting/MeetingPage.qml index c5158d0c5..326fbf76a 100644 --- a/Linphone/view/Page/Main/Meeting/MeetingPage.qml +++ b/Linphone/view/Page/Main/Meeting/MeetingPage.qml @@ -434,7 +434,7 @@ AbstractMainPage { RowLayout { spacing: Utils.getSizeWithScreenRatio(8) EffectImage{ - imageSource: AppIcons.usersThree + imageSource: AppIcons.videoconference colorizationColor: DefaultStyle.main2_600 Layout.preferredWidth: Utils.getSizeWithScreenRatio(24) Layout.preferredHeight: Utils.getSizeWithScreenRatio(24) @@ -644,7 +644,7 @@ AbstractMainPage { content: RowLayout { spacing: Utils.getSizeWithScreenRatio(8) EffectImage { - imageSource: AppIcons.usersThree + imageSource: AppIcons.videoconference colorizationColor: DefaultStyle.main2_600 Layout.preferredWidth: Utils.getSizeWithScreenRatio(24) Layout.preferredHeight: Utils.getSizeWithScreenRatio(24) diff --git a/Linphone/view/Page/Window/Call/CallsWindow.qml b/Linphone/view/Page/Window/Call/CallsWindow.qml index 0142bc81e..15ce9e373 100644 --- a/Linphone/view/Page/Window/Call/CallsWindow.qml +++ b/Linphone/view/Page/Window/Call/CallsWindow.qml @@ -369,7 +369,7 @@ AbstractWindow { : (mainWindow.call.core.paused || mainWindow.callState === LinphoneEnums.CallState.Paused || mainWindow.callState === LinphoneEnums.CallState.PausedByRemote) ? AppIcons.pause : mainWindow.conference - ? AppIcons.usersThree + ? AppIcons.videoconference : mainWindow.call.core.dir === LinphoneEnums.CallDir.Outgoing ? AppIcons.arrowUpRight : AppIcons.arrowDownLeft @@ -389,7 +389,7 @@ AbstractWindow { target: callStatusIcon when: middleItemStackView.currentItem.objectName === "waitingRoom" property: "imageSource" - value: AppIcons.usersThree + value: AppIcons.videoconference } } Connections {