From 95fa54802bee1c269d5428111fc5f80ad1e4a44d Mon Sep 17 00:00:00 2001 From: agsantos <aline.gondimsantos@savoirfairelinux.com> Date: Fri, 18 Jun 2021 10:26:01 -0300 Subject: [PATCH] callstack: change accept call button order Change-Id: I08e45afe465bb1073319131adf94c41feff53357 GitLab: #462 --- src/mainview/components/InitialCallPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainview/components/InitialCallPage.qml b/src/mainview/components/InitialCallPage.qml index 29a2d6a4a..d09e4a0a0 100644 --- a/src/mainview/components/InitialCallPage.qml +++ b/src/mainview/components/InitialCallPage.qml @@ -46,8 +46,8 @@ Rectangle { ListModel { id: incomingControlsModel ListElement { type: "refuse"; image: "qrc:/images/icons/round-close-24px.svg"} - ListElement { type: "cam"; image: "qrc:/images/icons/videocam-24px.svg"} ListElement { type: "mic"; image: "qrc:/images/icons/place_audiocall-24px.svg"} + ListElement { type: "cam"; image: "qrc:/images/icons/videocam-24px.svg"} } ListModel { id: outgoingControlsModel -- GitLab