diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-08 15:59:20 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-08 15:59:20 +0800 |
commit | 9e337deb0eadf7d73dab510d1c2fa8bc354279dd (patch) | |
tree | 4cf2ae47f1cc4c4d244ef4eab2b096219350b93e /SignIn.ui.qml | |
parent | 35e983e05e14d09dea9784870ec698077c342ff0 (diff) |
Simplify sign in public property names
Diffstat (limited to 'SignIn.ui.qml')
-rw-r--r-- | SignIn.ui.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SignIn.ui.qml b/SignIn.ui.qml index 9eb035f..2b5ed9a 100644 --- a/SignIn.ui.qml +++ b/SignIn.ui.qml @@ -3,10 +3,10 @@ import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 Flickable { - property alias signInEmail: email - property alias signInPassword: password - property alias signInButton: button - property alias signInSignUp: signUp + property alias email: email + property alias password: password + property alias button: button + property alias signUp: signUp readonly property bool doesntEmbed: Qt.platform.os === "android" || Qt.platform.os === "linux" || Qt.platform.os === "osx" |