Remove interaction with username and password fields on mouse and key press events for background videos

This commit is contained in:
hygienic-books 2022-03-06 23:16:45 +01:00
parent a224269dd5
commit 8282667ef9

View File

@ -75,23 +75,9 @@ Rectangle {
id: mouseArea1 id: mouseArea1
anchors.fill: parent; anchors.fill: parent;
//onPressed: {playlist1.shuffle(); playlist1.next();} //onPressed: {playlist1.shuffle(); playlist1.next();}
onPressed: { 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
} }
Keys.onPressed: {}
} }
WallpaperFader { WallpaperFader {
id: fader1 id: fader1
@ -120,27 +106,10 @@ Rectangle {
id: mouseArea2 id: mouseArea2
enabled: false enabled: false
anchors.fill: parent; anchors.fill: parent;
onPressed: { 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
} }
Behavior on opacity {}
Keys.onPressed: {}
} }
WallpaperFader { WallpaperFader {