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') } }