NComboBox: simple js function

This commit is contained in:
ItsLemmy
2025-09-24 10:24:45 -04:00
parent 9105ec6b0d
commit 084fb39abd
+2 -2
View File
@@ -155,10 +155,10 @@ RowLayout {
}
contentItem: NText {
text: (function () {
text: {
var item = root.getItem(index)
return item && item.name ? item.name : ""
})()
}
font.pointSize: Style.fontSizeM * scaling
color: highlighted ? Color.mOnTertiary : Color.mOnSurface
verticalAlignment: Text.AlignVCenter