Skip to content

Commit

Permalink
fix combobox widget indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasMizera authored and PeterPetrik committed Nov 17, 2020
1 parent 467f4f1 commit 091b2f6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ ComboBox {
font.pixelSize: comboStyle.fontPixelSize
highlighted: comboBox.highlightedIndex === index
leftPadding: 5 * QgsQuick.Utils.dp
onClicked: comboBox.itemClicked( model.EmitableIndex ? model.EmitableIndex : index )
onClicked: comboBox.itemClicked( model.FeatureId ? model.FeatureId : index )
}

contentItem: Text {
Expand Down

0 comments on commit 091b2f6

Please sign in to comment.