diff --git a/launcher/ui/Settings/AccountSettings.qml b/launcher/ui/Settings/AccountSettings.qml index e112eb9..4a0e28d 100644 --- a/launcher/ui/Settings/AccountSettings.qml +++ b/launcher/ui/Settings/AccountSettings.qml @@ -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" } ] diff --git a/launcher/ui/Settings/ProfileSettings.qml b/launcher/ui/Settings/ProfileSettings.qml index e7eb692..1d764c9 100644 --- a/launcher/ui/Settings/ProfileSettings.qml +++ b/launcher/ui/Settings/ProfileSettings.qml @@ -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" } ] diff --git a/launcher/ui/Settings/SettingsPage.qml b/launcher/ui/Settings/SettingsPage.qml index 309902d..33e0cb9 100644 --- a/launcher/ui/Settings/SettingsPage.qml +++ b/launcher/ui/Settings/SettingsPage.qml @@ -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 },