Fix the tap handler on these buttons.

This commit is contained in:
Adam Treat 2023-07-11 14:58:54 -04:00
parent 18dbfddcb3
commit 833a56fadd

View File

@ -72,10 +72,11 @@ MyDialog {
elide: Text.ElideRight elide: Text.ElideRight
color: theme.textColor color: theme.textColor
width: 200 width: 200
TapHandler { }
onTapped: {
listView.currentIndex = index TapHandler {
} onTapped: {
listView.currentIndex = index
} }
} }
} }