diff options
Diffstat (limited to 'accounts/maildir/package/contents/ui/MaildirAccountSettings.qml')
-rw-r--r-- | accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml index 2f5049e0..61828f34 100644 --- a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml +++ b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml | |||
@@ -51,6 +51,12 @@ Rectangle { | |||
51 | Layout.fillWidth: true | 51 | Layout.fillWidth: true |
52 | text: maildirSettings.path | 52 | text: maildirSettings.path |
53 | onTextChanged: { maildirSettings.path = text; } | 53 | onTextChanged: { maildirSettings.path = text; } |
54 | validator: maildirSettings.pathValidator | ||
55 | Rectangle { | ||
56 | anchors.fill: parent | ||
57 | opacity: 0.2 | ||
58 | color: path.acceptableInput ? "green" : "yellow" | ||
59 | } | ||
54 | } | 60 | } |
55 | 61 | ||
56 | Button { | 62 | Button { |