diff --git a/Linphone/view/Control/Display/Call/CallHistoryListView.qml b/Linphone/view/Control/Display/Call/CallHistoryListView.qml index d80903882..52925951a 100644 --- a/Linphone/view/Control/Display/Call/CallHistoryListView.qml +++ b/Linphone/view/Control/Display/Call/CallHistoryListView.qml @@ -122,6 +122,7 @@ ListView { width: 45 * DefaultStyle.dp height: 45 * DefaultStyle.dp isConference: modelData.core.isConference + shadowEnabled: false } ColumnLayout { Layout.fillHeight: true diff --git a/Linphone/view/Control/Display/Call/CallListView.qml b/Linphone/view/Control/Display/Call/CallListView.qml index 6e25405ed..2d2ba6166 100644 --- a/Linphone/view/Control/Display/Call/CallListView.qml +++ b/Linphone/view/Control/Display/Call/CallListView.qml @@ -33,6 +33,7 @@ ListView { Layout.preferredHeight: 45 * DefaultStyle.dp _address: modelData.core.remoteAddress isConference: modelData.core.isConference + shadowEnabled: false } ColumnLayout { spacing: 0 diff --git a/Linphone/view/Control/Display/Contact/Avatar.qml b/Linphone/view/Control/Display/Contact/Avatar.qml index 952c6d1c9..5204fe018 100644 --- a/Linphone/view/Control/Display/Contact/Avatar.qml +++ b/Linphone/view/Control/Display/Contact/Avatar.qml @@ -16,6 +16,7 @@ Loader{ property FriendGui contact: null property CallGui call: null property bool isConference: false + property bool shadowEnabled: true property string _address: account ? account.core?.identityAddress || "" : call @@ -65,9 +66,11 @@ Loader{ anchors.fill: parent MultiEffect { - source: stackView + visible: mainItem.shadowEnabled + enabled: mainItem.shadowEnabled + shadowEnabled: mainItem.shadowEnabled anchors.fill: stackView - shadowEnabled: true + source: stackView shadowBlur: 0.1 shadowColor: DefaultStyle.grey_1000 shadowOpacity: 0.1 diff --git a/Linphone/view/Control/Display/Contact/ContactListItem.qml b/Linphone/view/Control/Display/Contact/ContactListItem.qml index 49a59e376..c8b60e7c0 100644 --- a/Linphone/view/Control/Display/Contact/ContactListItem.qml +++ b/Linphone/view/Control/Display/Contact/ContactListItem.qml @@ -67,6 +67,7 @@ FocusScope { Layout.preferredHeight: 45 * DefaultStyle.dp Layout.leftMargin: 5 * DefaultStyle.dp contact: searchResultItem + shadowEnabled: false } ColumnLayout { spacing: 0 diff --git a/Linphone/view/Control/Display/Participant/ParticipantDeviceListView.qml b/Linphone/view/Control/Display/Participant/ParticipantDeviceListView.qml index 055d6dee6..ffa9d7280 100644 --- a/Linphone/view/Control/Display/Participant/ParticipantDeviceListView.qml +++ b/Linphone/view/Control/Display/Participant/ParticipantDeviceListView.qml @@ -47,6 +47,7 @@ ListView { Layout.preferredWidth: 45 * DefaultStyle.dp Layout.preferredHeight: 45 * DefaultStyle.dp _address: modelData.core.address + shadowEnabled: false } Text { text: modelData.core.displayName diff --git a/Linphone/view/Control/Display/Participant/ParticipantListView.qml b/Linphone/view/Control/Display/Participant/ParticipantListView.qml index bf4643097..2fc93e953 100644 --- a/Linphone/view/Control/Display/Participant/ParticipantListView.qml +++ b/Linphone/view/Control/Display/Participant/ParticipantListView.qml @@ -52,6 +52,7 @@ ListView { Layout.preferredWidth: 45 * DefaultStyle.dp Layout.preferredHeight: 45 * DefaultStyle.dp _address: modelData.core.sipAddress + shadowEnabled: false } Text { text: modelData.core.displayName diff --git a/Linphone/view/Page/Form/Contact/ContactEdition.qml b/Linphone/view/Page/Form/Contact/ContactEdition.qml index 8b598f58a..26dabd0e1 100644 --- a/Linphone/view/Page/Form/Contact/ContactEdition.qml +++ b/Linphone/view/Page/Form/Contact/ContactEdition.qml @@ -197,7 +197,7 @@ MainRightPanel { id: givenNameEdit Layout.preferredHeight: 49 * DefaultStyle.dp initialText: contact.core.givenName - onTextChanged: { + onTextEdited: { contact.core.givenName = givenNameEdit.text } backgroundColor: DefaultStyle.grey_0 @@ -212,7 +212,7 @@ MainRightPanel { contentItem: TextField { id: nameTextField initialText: contact.core.familyName - onEditingFinished: contact.core.familyName = text + onTextEdited: contact.core.familyName = text backgroundColor: DefaultStyle.grey_0 KeyNavigation.up: givenNameEdit KeyNavigation.down: companyTextField @@ -224,7 +224,7 @@ MainRightPanel { contentItem: TextField { id: companyTextField initialText: contact.core.organization - onEditingFinished: contact.core.organization = text + onTextEdited: contact.core.organization = text backgroundColor: DefaultStyle.grey_0 KeyNavigation.up: nameTextField KeyNavigation.down: jobTextField @@ -236,7 +236,7 @@ MainRightPanel { contentItem: TextField { id: jobTextField initialText: contact.core.job - onEditingFinished: contact.core.job = text + onTextEdited: contact.core.job = text backgroundColor: DefaultStyle.grey_0 KeyNavigation.up: companyTextField Keys.onPressed: (event) => { diff --git a/Linphone/view/Page/Form/Meeting/AddParticipantsForm.qml b/Linphone/view/Page/Form/Meeting/AddParticipantsForm.qml index 0c38780e7..3692afa0a 100644 --- a/Linphone/view/Page/Form/Meeting/AddParticipantsForm.qml +++ b/Linphone/view/Page/Form/Meeting/AddParticipantsForm.qml @@ -49,6 +49,7 @@ FocusScope{ Layout.preferredWidth: 45 * DefaultStyle.dp Layout.preferredHeight: 45 * DefaultStyle.dp _address: modelData + shadowEnabled: false } Text { Layout.fillWidth: true diff --git a/Linphone/view/Page/Form/Meeting/MeetingForm.qml b/Linphone/view/Page/Form/Meeting/MeetingForm.qml index 31c3d0648..8c162a554 100644 --- a/Linphone/view/Page/Form/Meeting/MeetingForm.qml +++ b/Linphone/view/Page/Form/Meeting/MeetingForm.qml @@ -283,6 +283,7 @@ FocusScope { Layout.preferredWidth: 45 * DefaultStyle.dp Layout.preferredHeight: 45 * DefaultStyle.dp _address: modelData.address + shadowEnabled: false } Text { property var displayNameObj: UtilsCpp.getDisplayName(modelData.address) diff --git a/Linphone/view/Page/Main/Meeting/MeetingPage.qml b/Linphone/view/Page/Main/Meeting/MeetingPage.qml index 8f2baa59c..c92b97d66 100644 --- a/Linphone/view/Page/Main/Meeting/MeetingPage.qml +++ b/Linphone/view/Page/Main/Meeting/MeetingPage.qml @@ -765,6 +765,7 @@ AbstractMainPage { Layout.preferredWidth: 45 * DefaultStyle.dp Layout.preferredHeight: 45 * DefaultStyle.dp _address: modelData.address + shadowEnabled: false } Text { property var displayNameObj: UtilsCpp.getDisplayName(modelData.address)