mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 05:52:31 +02:00
THE POINTERS ARE NOT POINTING!
This commit is contained in:
parent
4a724fb4cc
commit
4def7d9f5d
1 changed files with 16 additions and 0 deletions
|
@ -35,6 +35,14 @@ Item {
|
||||||
text: "<";
|
text: "<";
|
||||||
font.pointSize: 16;
|
font.pointSize: 16;
|
||||||
color: "white";
|
color: "white";
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
settingEnabled = !settingEnabled
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -74,6 +82,14 @@ Item {
|
||||||
text: ">";
|
text: ">";
|
||||||
font.pointSize: 16;
|
font.pointSize: 16;
|
||||||
color: "white";
|
color: "white";
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
settingEnabled = !settingEnabled
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue