diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ae3b025..30c0f3ef8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Display hidden scrollbars. - Display hidden error icon on messages. +- Display recordings page on Mac. - Update SDK to 5.2.17 ## 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 2c72b6997..c17a4f0b8 100644 --- a/linphone-app/ui/views/App/Main/MainWindow.qml +++ b/linphone-app/ui/views/App/Main/MainWindow.qml @@ -419,7 +419,8 @@ ApplicationWindow { active:Qt.platform.os === 'osx' sourceComponent:MainWindowTopMenuBar{ onDisplayRecordings: { - timeline.model.unselectAll() + if(mainLoader.item) + mainLoader.item.timeline.model.unselectAll() setView('Recordings') } }