linphone-desktop/tests/ui/modules/Common/Popup/DropDownDynamicMenu.qml
2016-10-25 17:11:34 +02:00

16 lines
476 B
QML

// ===================================================================
// Menu which supports `ListView`.
// ===================================================================
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
}
}