mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-17 20:08:28 +00:00
fix meeting icon
This commit is contained in:
parent
e7598bef1e
commit
dc603dace6
5 changed files with 9 additions and 9 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue