From 7b0e730bce52c558e08f9953d872be64ecf2bc55 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 5 May 2025 16:33:41 -0400 Subject: [PATCH] Add better icons to various settings pages --- launcher/ui/Settings/AccountSettings.qml | 4 ++++ launcher/ui/Settings/ProfileSettings.qml | 4 ++++ launcher/ui/Settings/SettingsPage.qml | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) 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 },