change layout icon #LINQT-1991

This commit is contained in:
Gaelle Braud 2025-09-15 10:41:06 +02:00
parent 452ef79ac0
commit 097c48ebba
4 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="#000000" viewBox="0 0 256 256"><path d="M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40Zm0,16V96H40V56ZM40,112H96v88H40Zm176,88H112V112H216v88Z"></path></svg>

After

Width:  |  Height:  |  Size: 274 B

View file

@ -24,7 +24,7 @@ FocusScope {
spacing: 0 spacing: 0
Repeater { Repeater {
model: [ 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_active_speaker"), imgUrl: AppIcons.pip},
{text: qsTr("conference_layout_audio_only"), imgUrl: AppIcons.waveform} {text: qsTr("conference_layout_audio_only"), imgUrl: AppIcons.waveform}
] ]

View file

@ -1495,7 +1495,7 @@ AbstractWindow {
IconLabelButton { IconLabelButton {
Layout.fillWidth: true Layout.fillWidth: true
visible: mainWindow.conference visible: mainWindow.conference
icon.source: AppIcons.squaresFour icon.source: AppIcons.layout
icon.width: Math.round(32 * DefaultStyle.dp) icon.width: Math.round(32 * DefaultStyle.dp)
icon.height: Math.round(32 * DefaultStyle.dp) icon.height: Math.round(32 * DefaultStyle.dp)
//: "Modifier la disposition" //: "Modifier la disposition"

View file

@ -74,6 +74,7 @@ QtObject {
property string trustedWhite: "image://internal/trusted-white.svg" property string trustedWhite: "image://internal/trusted-white.svg"
property string trustedMask: "image://internal/trusted-mask.svg" property string trustedMask: "image://internal/trusted-mask.svg"
property string avatar: "image://internal/randomAvatar.png" property string avatar: "image://internal/randomAvatar.png"
property string layout: "image://internal/layout.svg"
property string pause: "image://internal/pause.svg" property string pause: "image://internal/pause.svg"
property string pauseFill: "image://internal/pause-fill.svg" property string pauseFill: "image://internal/pause-fill.svg"
property string play: "image://internal/play.svg" property string play: "image://internal/play.svg"