diff options
-rw-r--r-- | accounts/gmail/package/contents/ui/GmailSettings.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/accounts/gmail/package/contents/ui/GmailSettings.qml b/accounts/gmail/package/contents/ui/GmailSettings.qml index 39e1b307..86ea966a 100644 --- a/accounts/gmail/package/contents/ui/GmailSettings.qml +++ b/accounts/gmail/package/contents/ui/GmailSettings.qml | |||
@@ -57,6 +57,22 @@ Item { | |||
57 | rowSpacing: Kube.Units.largeSpacing | 57 | rowSpacing: Kube.Units.largeSpacing |
58 | 58 | ||
59 | Kube.Label { | 59 | Kube.Label { |
60 | text: "Please note that GMail requires you to configure your account to allow IMAP connections from Kube: | ||
61 | <ol type=''> | ||
62 | <li> See <a href='https://support.google.com/mail/answer/7126229'>https://support.google.com/mail/answer/7126229</a> to configure your account to allow IMAP connections. | ||
63 | <li> Visit <a href='https://myaccount.google.com/lesssecureapps'>https://myaccount.google.com/lesssecureapps</a> and enable the setting to allow Kube to connect to your account." | ||
64 | Layout.alignment: Qt.AlignCenter | ||
65 | Layout.columnSpan: 2 | ||
66 | onLinkActivated: Qt.openUrlExternally(link) | ||
67 | textFormat: Text.StyledText | ||
68 | MouseArea { | ||
69 | anchors.fill: parent | ||
70 | acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Text | ||
71 | cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor | ||
72 | } | ||
73 | } | ||
74 | |||
75 | Kube.Label { | ||
60 | text: "Title of Account" | 76 | text: "Title of Account" |
61 | Layout.alignment: Qt.AlignRight | 77 | Layout.alignment: Qt.AlignRight |
62 | } | 78 | } |