1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-11 20:47:45 +00:00

Add better icons to various settings pages

This commit is contained in:
Joshua Goins 2025-05-05 16:33:41 -04:00
parent 14c8b8aef7
commit 7b0e730bce
3 changed files with 9 additions and 1 deletions

View file

@ -43,19 +43,23 @@ FormCard.FormCardPage {
Kirigami.Action {
id: generalAction
text: i18n("General")
icon.name: "configure-symbolic"
},
Kirigami.Action {
id: accountAction
text: i18n("Account")
icon.name: "user-symbolic"
},
Kirigami.Action {
id: loginAction
text: i18n("Login")
icon.name: "password-copy-symbolic"
},
Kirigami.Action {
id: developerAction
text: i18n("Developer")
visible: LauncherCore.config.showDevTools
icon.name: "applications-development-symbolic"
}
]

View file

@ -38,20 +38,24 @@ FormCard.FormCardPage {
Kirigami.Action {
id: generalAction
text: i18n("General")
icon.name: "configure-symbolic"
},
Kirigami.Action {
id: wineAction
text: i18n("Wine")
visible: !LauncherCore.isWindows
icon.name: "wine-symbolic"
},
Kirigami.Action {
id: dalamudAction
text: i18n("Dalamud")
icon.name: "extension-symbolic"
},
Kirigami.Action {
id: developerAction
text: i18n("Developer")
visible: LauncherCore.config.showDevTools
icon.name: "applications-development-symbolic"
}
]

View file

@ -52,7 +52,7 @@ KirigamiSettings.ConfigurationView {
KirigamiSettings.ConfigurationModule {
moduleId: "devtool"
text: i18n("Developer Settings")
icon.name: "preferences-others-symbolic"
icon.name: "applications-development-symbolic"
page: () => Qt.createComponent("zone.xiv.astra", "DeveloperSettings")
visible: LauncherCore.config.showDevTools
},