From eec2e2a769264803da028cbb6b3d9db1bace2f4a Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Fri, 31 Mar 2023 11:01:10 +0200 Subject: [PATCH] Multiple files can be selected as attachement. --- CHANGELOG.md | 4 ++++ linphone-app/ui/modules/Common/Form/DroppableTextArea.qml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e1aa36b8..50ba6c7eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Color of busy indicator when the chat is loading. - Update SDK to 5.2.42 +### Added +- New language support: Czech +- Multiple files can be selected as attachement. + ## 5.0.14 - 2023-03-16 ## Fixed diff --git a/linphone-app/ui/modules/Common/Form/DroppableTextArea.qml b/linphone-app/ui/modules/Common/Form/DroppableTextArea.qml index 56dae77b7..f323e44c9 100644 --- a/linphone-app/ui/modules/Common/Form/DroppableTextArea.qml +++ b/linphone-app/ui/modules/Common/Form/DroppableTextArea.qml @@ -82,7 +82,7 @@ Item { folder: shortcuts.home title: qsTr('fileChooserTitle') - + selectMultiple: true onAccepted: {_emitFiles(fileDialog.fileUrls);fileDialogLoader.active = false} onRejected: fileDialogLoader.active = false Component.onCompleted: fileDialog.open()