bugfix/7-get-rid-of-reference-errors #8

Merged
hygienic-books merged 9 commits from bugfix/7-get-rid-of-reference-errors into master 2022-03-06 22:19:17 +00:00
Showing only changes of commit 8282667ef9 - Show all commits

View File

@ -75,23 +75,9 @@ Rectangle {
id: mouseArea1
anchors.fill: parent;
//onPressed: {playlist1.shuffle(); playlist1.next();}
onPressed: {
fader1.state = fader1.state == "off" ? "on" : "off" ;
if (config.autofocusInput == "true") {
if (username_input_box.text == "")
username_input_box.focus = true
else
password_input_box.focus = true
}
}
}
Keys.onPressed: {
fader1.state = "on";
if (username_input_box.text == "")
username_input_box.focus = true
else
password_input_box.focus = true
onPressed: {}
}
Keys.onPressed: {}
}
WallpaperFader {
id: fader1
@ -120,27 +106,10 @@ Rectangle {
id: mouseArea2
enabled: false
anchors.fill: parent;
onPressed: {
fader1.state = fader1.state == "off" ? "on" : "off" ;
if (config.autofocusInput == "true") {
if (username_input_box.text == "")
username_input_box.focus = true
else
password_input_box.focus = true
}
}
}
Behavior on opacity {
enabled: true
NumberAnimation { easing.type: Easing.InOutQuad; duration: 3000 }
}
Keys.onPressed: {
fader2.state = "on";
if (username_input_box.text == "")
username_input_box.focus = true
else
password_input_box.focus = true
onPressed: {}
}
Behavior on opacity {}
Keys.onPressed: {}
}
WallpaperFader {