From 847001f2d5cf5c3bffbce070017fe44952869ddd Mon Sep 17 00:00:00 2001 From: KDTHEGREATEST Date: Mon, 15 Jun 2026 23:44:48 +0300 Subject: [PATCH] Change default gesture swipes to desktop switching --- crates/openlogi-core/src/binding.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/openlogi-core/src/binding.rs b/crates/openlogi-core/src/binding.rs index 5b29587a..1e3d0755 100644 --- a/crates/openlogi-core/src/binding.rs +++ b/crates/openlogi-core/src/binding.rs @@ -874,8 +874,8 @@ pub fn default_gesture_binding(direction: GestureDirection) -> Action { match direction { GestureDirection::Up => Action::MissionControl, GestureDirection::Down => Action::ShowDesktop, - GestureDirection::Left => Action::PrevTab, - GestureDirection::Right => Action::NextTab, + GestureDirection::Left => Action::PreviousDesktop, + GestureDirection::Right => Action::NextDesktop, GestureDirection::Click => Action::AppExpose, } }