Skip to content

Commit

Permalink
Move the "behavior" section in the settings to be the 2nd one
Browse files Browse the repository at this point in the history
  • Loading branch information
Azakidev authored and jmmaranan committed Mar 31, 2024
1 parent 2513b7e commit 91fb1ea
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lib/prefs/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,19 @@ export class SettingsPage extends PreferencesPage {
],
});

this.add_group({
title: _("Behavior"),
children: [
new SwitchRow({
title: _("Move Pointer with the Focus"),
subtitle: _("Move the pointer when focusing or swapping via keyboard"),
experimental: true,
settings,
bind: "move-pointer-focus-enabled",
}),
],
});

this.add_group({
title: _("Tiling"),
children: [
Expand Down Expand Up @@ -130,19 +143,6 @@ export class SettingsPage extends PreferencesPage {
],
});

this.add_group({
title: _("Behavior"),
children: [
new SwitchRow({
title: _("Move Pointer with the Focus"),
subtitle: _("Move the pointer when focusing or swapping via keyboard"),
experimental: true,
settings,
bind: "move-pointer-focus-enabled",
}),
],
});

if (!production) {
this.add_group({
title: _("Logger"),
Expand Down

0 comments on commit 91fb1ea

Please sign in to comment.