diff options
| author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2020-07-18 16:45:50 +0200 |
|---|---|---|
| committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2020-07-18 16:45:50 +0200 |
| commit | 7d11099e5afd1f16c811ccbe954a158105be36ab (patch) | |
| tree | 61f5eb08c7ccd19a6b4947ee1900d49e25fac32e /main.qml | |
| parent | bc375c354abee8132ca1bb585c8c5ca99f7f9eba (diff) | |
| download | RWA.Support.DesktopApp-7d11099e5afd1f16c811ccbe954a158105be36ab.tar.gz RWA.Support.DesktopApp-7d11099e5afd1f16c811ccbe954a158105be36ab.tar.bz2 RWA.Support.DesktopApp-7d11099e5afd1f16c811ccbe954a158105be36ab.zip | |
Add pinChange() function
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -84,8 +84,14 @@ Window { id: pin_text x: 235 width: 210 - height: 50 - text: qsTr("0 1 A 2 3 B") + height: 28 + // ':' translation info + //: Do not translate! + //: This is just the pin which is used to authenticate to remote web app (django) frontend + text: qsTr("%1").arg(pin) + property string pin: "-----" + font.letterSpacing: 10 + anchors.horizontalCenterOffset: 0 font.pixelSize: 26 anchors.horizontalCenter: your_pin_text.horizontalCenter anchors.top: your_pin_text.bottom |
