From a3f5f4fd35dada77df49034765be1e744238f386 Mon Sep 17 00:00:00 2001 From: prompt.ac/@jeffrey Date: Sat, 06 Jun 2026 01:12:59 +0000 Subject: [PATCH] menuband: re-enable echo half of the trackpad fx axis Flips fxEchoEnabled back to true now that the bend-channel priming fix landed — swipe RIGHT engages echo again, swipe LEFT still does space. Co-Authored-By: Claude Opus 4.8 --- slab/menuband/Sources/MenuBand/AppDelegate.swift | 9 ++++----- 1 file(s) changed, 4 insertion(s)(+), 5 deletion(s)(-) diff --git a/slab/menuband/Sources/MenuBand/AppDelegate.swift b/slab/menuband/Sources/MenuBand/AppDelegate.swift --- a/slab/menuband/Sources/MenuBand/AppDelegate.swift +++ b/slab/menuband/Sources/MenuBand/AppDelegate.swift @@ -357,11 +357,10 @@ /// Trackpad-points-per-unit-echo (⌥Option + X-axis). Matched to /// the space sensitivity so the two horizontal modes feel the /// same under the finger — only the modifier changes the target. private static let echoSensitivityPerPoint: Float = 1.0 / 200.0 - /// [temp] Echo half of the horizontal fx axis (swipe RIGHT) is - /// disabled for now. The X axis stays bipolar in code but the - /// right side is clamped out, so only the left/space (reverb) - /// half responds. Flip back to `true` to restore echo. - private static let fxEchoEnabled = false + /// Echo half of the horizontal fx axis (swipe RIGHT). When false the + /// X axis is clamped to its left/space (reverb) half only; flip to + /// `false` again to temporarily disable echo. + private static let fxEchoEnabled = true func applicationDidFinishLaunching(_ notification: Notification) { debugLog("applicationDidFinishLaunching pid=\(ProcessInfo.processInfo.processIdentifier)") -- tangled.sh