Update prefs.js

This commit is contained in:
2025-07-25 00:48:18 +02:00
committed by GitHub
parent c5e692bb45
commit 524098ce68
+9 -32
View File
@@ -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,