diff --git a/linphone-desktop/ui/modules/Common/Popup/DropDownDynamicMenu.qml b/linphone-desktop/ui/modules/Common/Popup/DropDownDynamicMenu.qml index 492ebca30..afe204c97 100644 --- a/linphone-desktop/ui/modules/Common/Popup/DropDownDynamicMenu.qml +++ b/linphone-desktop/ui/modules/Common/Popup/DropDownDynamicMenu.qml @@ -17,7 +17,10 @@ AbstractDropDownMenu { var list = _content[0] Utils.assert(list != null, 'No list found.') - Utils.assert(Utils.qmlTypeof(list, 'QQuickListView'), 'No list view parameter.') + Utils.assert( + Utils.qmlTypeof(list, 'QQuickListView') || Utils.qmlTypeof(list, 'ScrollableListView'), + 'No list view parameter.' + ) var height = list.count * entryHeight