From 097c48ebba9595843b041430288728ea9e166e95 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Mon, 15 Sep 2025 10:41:06 +0200 Subject: [PATCH] change layout icon #LINQT-1991 --- Linphone/data/image/layout.svg | 1 + Linphone/view/Control/Form/Call/ChangeLayoutForm.qml | 2 +- Linphone/view/Page/Window/Call/CallsWindow.qml | 2 +- Linphone/view/Style/AppIcons.qml | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 Linphone/data/image/layout.svg diff --git a/Linphone/data/image/layout.svg b/Linphone/data/image/layout.svg new file mode 100644 index 000000000..f41fdf253 --- /dev/null +++ b/Linphone/data/image/layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/view/Control/Form/Call/ChangeLayoutForm.qml b/Linphone/view/Control/Form/Call/ChangeLayoutForm.qml index 70432a520..a028a5b17 100644 --- a/Linphone/view/Control/Form/Call/ChangeLayoutForm.qml +++ b/Linphone/view/Control/Form/Call/ChangeLayoutForm.qml @@ -24,7 +24,7 @@ FocusScope { spacing: 0 Repeater { model: [ - {text: qsTr("conference_layout_grid"), imgUrl: AppIcons.squaresFour}, + {text: qsTr("conference_layout_grid"), imgUrl: AppIcons.layout}, {text: qsTr("conference_layout_active_speaker"), imgUrl: AppIcons.pip}, {text: qsTr("conference_layout_audio_only"), imgUrl: AppIcons.waveform} ] diff --git a/Linphone/view/Page/Window/Call/CallsWindow.qml b/Linphone/view/Page/Window/Call/CallsWindow.qml index e2c484f81..f053cf6e1 100644 --- a/Linphone/view/Page/Window/Call/CallsWindow.qml +++ b/Linphone/view/Page/Window/Call/CallsWindow.qml @@ -1495,7 +1495,7 @@ AbstractWindow { IconLabelButton { Layout.fillWidth: true visible: mainWindow.conference - icon.source: AppIcons.squaresFour + icon.source: AppIcons.layout icon.width: Math.round(32 * DefaultStyle.dp) icon.height: Math.round(32 * DefaultStyle.dp) //: "Modifier la disposition" diff --git a/Linphone/view/Style/AppIcons.qml b/Linphone/view/Style/AppIcons.qml index e38e92201..66d383204 100644 --- a/Linphone/view/Style/AppIcons.qml +++ b/Linphone/view/Style/AppIcons.qml @@ -74,6 +74,7 @@ QtObject { property string trustedWhite: "image://internal/trusted-white.svg" property string trustedMask: "image://internal/trusted-mask.svg" property string avatar: "image://internal/randomAvatar.png" + property string layout: "image://internal/layout.svg" property string pause: "image://internal/pause.svg" property string pauseFill: "image://internal/pause-fill.svg" property string play: "image://internal/play.svg"