From 524098ce682f23dbe1b8c4fbb8f105a4c2d05449 Mon Sep 17 00:00:00 2001 From: Dome Date: Fri, 25 Jul 2025 00:48:18 +0200 Subject: [PATCH] Update prefs.js --- prefs.js | 41 +++++++++-------------------------------- 1 file changed, 9 insertions(+), 32 deletions(-) diff --git a/prefs.js b/prefs.js index 5db2b29..8bcebda 100644 --- a/prefs.js +++ b/prefs.js @@ -66,41 +66,18 @@ function buildPrefsWidget() { GObject.TYPE_INT, ]); - addKeybinding( - store, - settings, - "swap-master-window", - "Master-Fenster tauschen" - ); - addKeybinding( - store, - settings, - "swap-left-window", - "Fenster nach links tauschen" - ); - addKeybinding( - store, - settings, - "swap-right-window", - "Fenster nach rechts tauschen" - ); - addKeybinding( - store, - settings, - "swap-up-window", - "Fenster nach oben tauschen" - ); - addKeybinding( - store, - settings, - "swap-down-window", - "Fenster nach unten tauschen" - ); + addKeybinding(store, settings, "swap-master-window", "Master-Fenster tauschen"); + + addKeybinding(store, settings, "swap-up-window", "Fenster nach oben tauschen"); + addKeybinding(store, settings, "swap-down-window", "Fenster nach unten tauschen"); + addKeybinding(store, settings, "swap-left-window", "Fenster nach links tauschen"); + addKeybinding(store, settings, "swap-right-window", "Fenster nach rechts tauschen"); - addKeybinding(store, settings, "focus-left", "Fokus nach links wechseln"); - addKeybinding(store, settings, "focus-right", "Fokus nach rechts wechseln"); addKeybinding(store, settings, "focus-up", "Fokus nach oben wechseln"); addKeybinding(store, settings, "focus-down", "Fokus nach unten wechseln"); + addKeybinding(store, settings, "focus-left", "Fokus nach links wechseln"); + addKeybinding(store, settings, "focus-right", "Fokus nach rechts wechseln"); + let treeView = new Gtk.TreeView({ model: store,