13. Component {
14. id: boatAlphaDelegate
15. Item {
16. id: boatAlphaContainer
17. width: parent.width
18. anchors.horizontalCenter: parent.horizontalCenter
19. height: Funcs.pointHeight(14)
20. Column {
21. Text {
22. font.pixelSize: Funcs.fontHeight(12)
23. text: boatAlphaName
24. horizontalAlignment: Text.AlignHCenter
25. }
26. }
27.
28. MouseArea {
29. id: boatAlphaMouseArea
30. anchors.fill: parent
31. hoverEnabled: true
32. onClicked: {
33. boatAlphaList.currentIndex = index
34. }
35. }
36. }
37. }
13. Component {
14. id: boatAlphaDelegate
15. Item {
16. id: boatAlphaContainer
17. width: parent.width
18. anchors.horizontalCenter: parent.horizontalCenter
19. height: Funcs.pointHeight(14)
20. Column {
21. Text {
22. font.pixelSize: Funcs.fontHeight(12)
23. text: boatAlphaName
24. horizontalAlignment: Text.AlignHCenter
25. }
26. }
27.
28. MouseArea {
29. id: boatAlphaMouseArea
30. anchors.fill: parent
31. hoverEnabled: true
32. onClicked: {
33. boatAlphaList.currentIndex = index
34. }
35. }
36. }
37. }
To copy to clipboard, switch view to plain text mode
Lines 18 & 24?
Bookmarks