linphone-desktop/tests/ui/modules/Common/Popup/DropDownDynamicMenu.qml

12 lines
298 B
QML

AbstractDropDownMenu {
property int entryHeight
property int maxMenuHeight
function _computeHeight () {
var model = _content[0].model
var height = model.count * entryHeight
return (maxMenuHeight !== undefined && height > maxMenuHeight)
? maxMenuHeight
: height
}
}