mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-14 11:46:34 +02:00
Added semicolons
This commit is contained in:
parent
01a0b26b90
commit
7f6773b1f4
1 changed files with 6 additions and 6 deletions
|
@ -76,8 +76,8 @@ Item {
|
|||
height: 50;
|
||||
echoMode: TextInput.Password;
|
||||
placeholderText: "enter current passphrase";
|
||||
activeFocusOnPress: true
|
||||
activeFocusOnTab: true
|
||||
activeFocusOnPress: true;
|
||||
activeFocusOnTab: true;
|
||||
|
||||
onFocusChanged: {
|
||||
if (focus) {
|
||||
|
@ -103,8 +103,8 @@ Item {
|
|||
height: 50;
|
||||
echoMode: TextInput.Password;
|
||||
placeholderText: root.isShowingTip ? "" : "enter new passphrase";
|
||||
activeFocusOnPress: true
|
||||
activeFocusOnTab: true
|
||||
activeFocusOnPress: true;
|
||||
activeFocusOnTab: true;
|
||||
|
||||
onFocusChanged: {
|
||||
if (focus) {
|
||||
|
@ -128,8 +128,8 @@ Item {
|
|||
height: 50;
|
||||
echoMode: TextInput.Password;
|
||||
placeholderText: root.isShowingTip ? "" : "re-enter new passphrase";
|
||||
activeFocusOnPress: true
|
||||
activeFocusOnTab: true
|
||||
activeFocusOnPress: true;
|
||||
activeFocusOnTab: true;
|
||||
|
||||
onFocusChanged: {
|
||||
if (focus) {
|
||||
|
|
Loading…
Reference in a new issue