mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-13 21:07:46 +00:00
Add better icons to various settings pages
This commit is contained in:
parent
14c8b8aef7
commit
7b0e730bce
3 changed files with 9 additions and 1 deletions
|
@ -43,19 +43,23 @@ FormCard.FormCardPage {
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: generalAction
|
id: generalAction
|
||||||
text: i18n("General")
|
text: i18n("General")
|
||||||
|
icon.name: "configure-symbolic"
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: accountAction
|
id: accountAction
|
||||||
text: i18n("Account")
|
text: i18n("Account")
|
||||||
|
icon.name: "user-symbolic"
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: loginAction
|
id: loginAction
|
||||||
text: i18n("Login")
|
text: i18n("Login")
|
||||||
|
icon.name: "password-copy-symbolic"
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: developerAction
|
id: developerAction
|
||||||
text: i18n("Developer")
|
text: i18n("Developer")
|
||||||
visible: LauncherCore.config.showDevTools
|
visible: LauncherCore.config.showDevTools
|
||||||
|
icon.name: "applications-development-symbolic"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -38,20 +38,24 @@ FormCard.FormCardPage {
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: generalAction
|
id: generalAction
|
||||||
text: i18n("General")
|
text: i18n("General")
|
||||||
|
icon.name: "configure-symbolic"
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: wineAction
|
id: wineAction
|
||||||
text: i18n("Wine")
|
text: i18n("Wine")
|
||||||
visible: !LauncherCore.isWindows
|
visible: !LauncherCore.isWindows
|
||||||
|
icon.name: "wine-symbolic"
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: dalamudAction
|
id: dalamudAction
|
||||||
text: i18n("Dalamud")
|
text: i18n("Dalamud")
|
||||||
|
icon.name: "extension-symbolic"
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
id: developerAction
|
id: developerAction
|
||||||
text: i18n("Developer")
|
text: i18n("Developer")
|
||||||
visible: LauncherCore.config.showDevTools
|
visible: LauncherCore.config.showDevTools
|
||||||
|
icon.name: "applications-development-symbolic"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ KirigamiSettings.ConfigurationView {
|
||||||
KirigamiSettings.ConfigurationModule {
|
KirigamiSettings.ConfigurationModule {
|
||||||
moduleId: "devtool"
|
moduleId: "devtool"
|
||||||
text: i18n("Developer Settings")
|
text: i18n("Developer Settings")
|
||||||
icon.name: "preferences-others-symbolic"
|
icon.name: "applications-development-symbolic"
|
||||||
page: () => Qt.createComponent("zone.xiv.astra", "DeveloperSettings")
|
page: () => Qt.createComponent("zone.xiv.astra", "DeveloperSettings")
|
||||||
visible: LauncherCore.config.showDevTools
|
visible: LauncherCore.config.showDevTools
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue