From b922ccadcd26e1302b33d20c819d3bc9be594266 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Wed, 28 Aug 2019 22:13:36 +0700 Subject: override button text to mixed case --- LoginForm.ui.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LoginForm.ui.qml b/LoginForm.ui.qml index dd16d23..b0c6e0a 100644 --- a/LoginForm.ui.qml +++ b/LoginForm.ui.qml @@ -15,6 +15,7 @@ Rectangle { id: googleButton text: qsTr("Continue with Google") font.family: "Google Sans" + font.capitalization: Font.MixedCase anchors.bottom: emailButton.top anchors.bottomMargin: 8 anchors.right: parent.right @@ -31,6 +32,7 @@ Rectangle { text: qsTr("Continue with E-Mail") flat: true font.family: "Google Sans" + font.capitalization: Font.MixedCase anchors.right: parent.right anchors.rightMargin: 16 anchors.left: parent.left -- cgit v1.2.3 From 65afd88ed022ff914ad30080a87c011b36ef90e1 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Wed, 28 Aug 2019 22:13:48 +0700 Subject: override button text to mixed case --- pages/EmailForm.ui.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index ce5a990..d8f570c 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -80,6 +80,7 @@ Rectangle { id: loginButton text: qsTr("Next") font.family: "Google Sans" + font.capitalization: Font.MixedCase anchors.right: parent.right anchors.rightMargin: 16 anchors.bottom: parent.bottom -- cgit v1.2.3 From ca02af24030e48d965feb6c8549ec5da1a1e83fb Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Wed, 28 Aug 2019 22:13:59 +0700 Subject: override button text to mixed case --- pages/PasswordForm.ui.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index eceb1f8..c895d72 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -83,6 +83,7 @@ Rectangle { y: 278 text: qsTr("Confirm password") font.family: "Google Sans" + font.capitalization: Font.MixedCase anchors.right: parent.right anchors.rightMargin: 16 anchors.bottom: parent.bottom -- cgit v1.2.3