From aab7ad1c6d6a58fcb962724108adc0852bde573a Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Tue, 7 Jan 2025 11:37:00 +0100 Subject: [PATCH] fix meeting date edition --- Linphone/view/Page/Form/Meeting/MeetingForm.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Linphone/view/Page/Form/Meeting/MeetingForm.qml b/Linphone/view/Page/Form/Meeting/MeetingForm.qml index 1c0a1b97..0b96fffb 100644 --- a/Linphone/view/Page/Form/Meeting/MeetingForm.qml +++ b/Linphone/view/Page/Form/Meeting/MeetingForm.qml @@ -131,9 +131,9 @@ FocusScope { onSelectedDateChanged: { if (!selectedDate || selectedDate == mainItem.conferenceInfoGui.core.dateTime) return mainItem.conferenceInfoGui.core.dateTime = UtilsCpp.createDateTime(selectedDate, startHour.selectedHour, startHour.selectedMin) - if (isCreation) { - startHour.selectedDateTime = UtilsCpp.createDateTime(selectedDate, startHour.selectedHour, startHour.selectedMin) - } + mainItem.conferenceInfoGui.core.endDateTime = UtilsCpp.createDateTime(selectedDate, endHour.selectedHour, endHour.selectedMin) + startHour.selectedDateTime = UtilsCpp.createDateTime(selectedDate, startHour.selectedHour, startHour.selectedMin) + endHour.selectedDateTime = UtilsCpp.createDateTime(selectedDate, endHour.selectedHour, endHour.selectedMin) } } },