[system/konlineaccounts] kcm/ui: kcm: add a disclaimer
Nate Graham <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 71b290517fd966ec150ef42ad1d73be5f22bf7f1 by Nate Graham.
Committed on 07/08/2026 at 17:46.
Pushed by ngraham into branch 'master'.
kcm: add a disclaimer
This is still in heavy development, and not rolled out as an official
recommendation yet. Mark it as such so users can make an informed
choice.
M +14 -0 kcm/ui/main.qml
https://invent.kde.org/system/konlineaccounts/-/commit/71b290517fd966ec150ef42ad1d73be5f22bf7f1
diff --git a/kcm/ui/main.qml b/kcm/ui/main.qml
index d64a526..644d3f6 100644
--- a/kcm/ui/main.qml
+++ b/kcm/ui/main.qml
@@ -32,6 +32,20 @@ KCM.ScrollViewKCM {
}
]
+ headerPaddingEnabled: false // Let the InlineMessage touch the edges
+ header: Kirigami.InlineMessage {
+ readonly property url bugReportURL: "https://invent.kde.org/system/konlineaccounts/-/work_items"
+
+ type: Kirigami.MessageType.Warning
+ position: Kirigami.InlineMessage.Position.Header
+ showCloseButton: false
+ visible: true
+
+ text: xi18nc("@info:usagetip", "This feature is under development and is still considered experimental. Report all issues <link url='%1'>here</link>.", bugReportURL)
+
+ onLinkActivated: Qt.openUrlExternally(bugReportURL)
+ }
+
view: ListView {
id: accountsList