diff options
Diffstat (limited to 'qml/pages')
| -rw-r--r-- | qml/pages/MainPage.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qml/pages/MainPage.qml b/qml/pages/MainPage.qml index b860e67..1195ef8 100644 --- a/qml/pages/MainPage.qml +++ b/qml/pages/MainPage.qml @@ -120,6 +120,7 @@ Page { inputMethodHints: Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase label: qsTr("Used Text") + hideLabelOnEmptyField: passwordmaker.used_text === "" onFocusChanged: if(focus) text = passwordmaker.used_text onPlaceholderTextChanged: if(!focus) text = "" placeholderText: passwordmaker.used_text === "" ? qsTr("Used Text") : passwordmaker.used_text @@ -177,6 +178,8 @@ Page { onFocusChanged: if(focus) text = passwordmaker.generated_password; else text = ""; placeholderColor: color + /* + //Commented out for now. This is anyhow never visible, and causes log spam on Sailfish 3. BusyIndicator { id: busy parent: null @@ -190,6 +193,7 @@ Page { rightItem: busy } } + */ } IconButton{ id: copyToClipboard |
