Unverified Commit 23b5156f authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8030 from DonLakeFlyer/ComboHeight

Reduce height of items in combo dropdown
parents 8ce76c39 99aa9b50
......@@ -53,7 +53,8 @@ T.ComboBox {
// The items in the popup
delegate: ItemDelegate {
width: _popupWidth
width: _popupWidth
height: Math.round(popupItemMetrics.height * 1.75)
property string _text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : model[control.textRole]) : modelData
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment