From c975e8f1e240c34aa3168c62d1ab2f3b5bc232a4 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Tue, 31 Jan 2023 10:24:45 +0100 Subject: [PATCH] Mac : Fix recordings error that prevent to display the page. --- CHANGELOG.md | 5 +++++ linphone-app/ui/views/App/Main/MainWindow.qml | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae26af34f..99afeae6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - File viewer in chats (Image/Animated Image/Video/Texts) with the option to export the file. - Accept/decline CLI commands. +## 5.0.9 - 2023-01-31 + ### Fixed - Display hidden scrollbars. +- Display hidden error icon on messages. +- Display recordings page on Mac. +- Update SDK to 5.2.19 ## 5.0.8 - 2023-01-20 diff --git a/linphone-app/ui/views/App/Main/MainWindow.qml b/linphone-app/ui/views/App/Main/MainWindow.qml index 458b43f69..66b162ff1 100644 --- a/linphone-app/ui/views/App/Main/MainWindow.qml +++ b/linphone-app/ui/views/App/Main/MainWindow.qml @@ -420,7 +420,8 @@ ApplicationWindow { active:Qt.platform.os === 'osx' sourceComponent:MainWindowTopMenuBar{ onDisplayRecordings: { - timeline.model.unselectAll() + if(mainLoader.item) + mainLoader.item.timeline.model.unselectAll() setView('Recordings') } }