From db32f66d76dc2eed4762ed408f2685e274bddcf4 Mon Sep 17 00:00:00 2001 From: kramo <93832451+kra-mo@users.noreply.github.com> Date: Wed, 29 Mar 2023 01:10:32 +0200 Subject: [PATCH] Update preferences grouping --- data/gtk/preferences.blp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/gtk/preferences.blp b/data/gtk/preferences.blp index 11b7cb6..b606081 100644 --- a/data/gtk/preferences.blp +++ b/data/gtk/preferences.blp @@ -9,8 +9,8 @@ template PreferencesWindow : Adw.PreferencesWindow { title: _("General"); icon-name: "user-home-symbolic"; - Adw.PreferencesGroup general_group { - title: _("General"); + Adw.PreferencesGroup behavior_group { + title: _("Behavior"); Adw.ActionRow { title: _("Exit After Launching Games"); @@ -21,23 +21,23 @@ template PreferencesWindow : Adw.PreferencesWindow { } Adw.ActionRow { - title: _("High Quality Images"); - subtitle: _("Save game covers losslessly at the cost of storage"); + title: _("Cover Image Launches Game"); + subtitle: _("Swaps the behavior of the cover image and the play button"); - Switch high_quality_images_switch { + Switch cover_launches_game_switch { valign: center; } } } - Adw.PreferencesGroup a11y_group { - title: _("Accessibility"); + Adw.PreferencesGroup images_group { + title: _("Images"); Adw.ActionRow { - title: _("Cover Image Launches Game"); - subtitle: _("Swaps the behavior of the cover image and the play button"); + title: _("High Quality Images"); + subtitle: _("Save game covers losslessly at the cost of storage"); - Switch cover_launches_game_switch { + Switch high_quality_images_switch { valign: center; } }