Add separate "About KDE" page to settings

This commit is contained in:
Joshua Goins
2023-02-25 10:50:49 -05:00
parent 0b1b1b8c8c
commit da6df18367
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: LGPL-2.0-or-later
import org.kde.kirigamiaddons.labs.mobileform 0.1 as MobileForm
MobileForm.AboutKDE {
title: i18nc("@title:window", "About KDE")
}

View File

@@ -53,6 +53,11 @@ Kirigami.CategorizedSettings {
text: i18n("About NeoChat")
icon.name: "help-about"
page: Qt.resolvedUrl("About.qml")
},
Kirigami.SettingAction {
text: i18n("About KDE")
icon.name: "kde"
page: Qt.resolvedUrl("AboutKDE.qml")
}
]
}