We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf98bcb commit d6a9deaCopy full SHA for d6a9dea
data/themes/maui/Main.qml
@@ -1,4 +1,5 @@
1
/***************************************************************************
2
+* Copyright (c) 2015 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
3
* Copyright (c) 2013 Abdurrahman AVCI <abdurrahmanavci@gmail.com
4
*
5
* Permission is hereby granted, free of charge, to any person
@@ -79,9 +80,10 @@ Rectangle {
79
80
81
MouseArea {
82
anchors.fill: parent
- hoverEnabled: true
83
- onEntered: listView.currentIndex = index
84
- onClicked: listView.focus = true
+ onClicked: {
+ listView.currentIndex = index;
85
+ listView.focus = true;
86
+ }
87
}
88
89
0 commit comments