THE POINTERS ARE NOT POINTING!

This commit is contained in:
armored-dragon 2025-04-05 15:59:37 -05:00
parent 4a724fb4cc
commit 4def7d9f5d
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -35,6 +35,14 @@ Item {
text: "<";
font.pointSize: 16;
color: "white";
MouseArea {
anchors.fill: parent
onClicked: {
settingEnabled = !settingEnabled
}
}
}
Rectangle {
@ -74,6 +82,14 @@ Item {
text: ">";
font.pointSize: 16;
color: "white";
MouseArea {
anchors.fill: parent
onClicked: {
settingEnabled = !settingEnabled
}
}
}
}