mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
12 lines
298 B
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
|
|
}
|
|
}
|