stop strip hide on touch of strip

This commit is contained in:
Aaron Seigo 2014-08-19 17:56:21 +02:00
parent 4296d6b648
commit 72ecec5f00

View file

@ -21,6 +21,10 @@ Leaves {
id: stripe id: stripe
opacity: 0 opacity: 0
function lockKeyPressed(id) {
hideTimer.restart();
console.log(id);
}
Behavior on opacity { Behavior on opacity {
NumberAnimation { NumberAnimation {
@ -51,7 +55,7 @@ Leaves {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onPressed: { onPressed: {
console.log("square"); stripe.lockKeyPressed("square");
} }
} }
} }
@ -70,7 +74,7 @@ Leaves {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onPressed: { onPressed: {
console.log("circle"); stripe.lockKeyPressed("circle");
} }
} }
} }
@ -89,7 +93,7 @@ Leaves {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onPressed: { onPressed: {
console.log("ex"); stripe.lockKeyPressed("ex");
} }
} }
} }
@ -108,7 +112,7 @@ Leaves {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onPressed: { onPressed: {
console.log("triangle"); stripe.lockKeyPressed("triangle");
} }
} }
} }