Update preferences grouping

This commit is contained in:
kramo
2023-03-29 01:10:32 +02:00
parent c1abed8af6
commit db32f66d76

View File

@@ -9,8 +9,8 @@ template PreferencesWindow : Adw.PreferencesWindow {
title: _("General"); title: _("General");
icon-name: "user-home-symbolic"; icon-name: "user-home-symbolic";
Adw.PreferencesGroup general_group { Adw.PreferencesGroup behavior_group {
title: _("General"); title: _("Behavior");
Adw.ActionRow { Adw.ActionRow {
title: _("Exit After Launching Games"); title: _("Exit After Launching Games");
@@ -21,23 +21,23 @@ template PreferencesWindow : Adw.PreferencesWindow {
} }
Adw.ActionRow { Adw.ActionRow {
title: _("High Quality Images"); title: _("Cover Image Launches Game");
subtitle: _("Save game covers losslessly at the cost of storage"); subtitle: _("Swaps the behavior of the cover image and the play button");
Switch high_quality_images_switch { Switch cover_launches_game_switch {
valign: center; valign: center;
} }
} }
} }
Adw.PreferencesGroup a11y_group { Adw.PreferencesGroup images_group {
title: _("Accessibility"); title: _("Images");
Adw.ActionRow { Adw.ActionRow {
title: _("Cover Image Launches Game"); title: _("High Quality Images");
subtitle: _("Swaps the behavior of the cover image and the play button"); subtitle: _("Save game covers losslessly at the cost of storage");
Switch cover_launches_game_switch { Switch high_quality_images_switch {
valign: center; valign: center;
} }
} }