Fix touch event fall-through in pull menu

This commit is contained in:
Thomas Perl 2014-02-07 00:30:25 +01:00
parent 41b5a91e75
commit b595e99cd9

View file

@ -20,16 +20,21 @@
import QtQuick 2.0
Column {
MouseArea {
id: pullMenu
default property alias items: pullMenuColumn.children
width: parent.width / 4
height: parent.height
anchors.top: parent.top
anchors.left: parent.right
Item { width: 1; height: 1 }
Column {
id: pullMenuColumn
spacing: (width - 72 * pgst.scalef) / 2
anchors.fill: parent
spacing: (width - 72 * pgst.scalef) / 2
Item { width: 1; height: 1 }
}
}