fix meeting icon

This commit is contained in:
Gaelle Braud 2026-03-06 11:40:54 +01:00
parent e7598bef1e
commit dc603dace6
5 changed files with 9 additions and 9 deletions

View file

@ -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
}
}

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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 {