From 35244082f15954de34de9185d18e368e44331adb Mon Sep 17 00:00:00 2001 From: ydw1904 Date: Sun, 6 Sep 2026 15:53:40 +0800 Subject: [PATCH] fix: put the degree sign back in the angle tuning pending label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `applyAngleTuning` lost the escape from `°`, so a staged angle read "Angle tuning 1200b0" in the pending bar. Noticed because the WLmouse angle control now stages through this function. Co-Authored-By: Claude Opus 5 --- src/device/controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device/controller.ts b/src/device/controller.ts index 561dede..e3a6bee 100644 --- a/src/device/controller.ts +++ b/src/device/controller.ts @@ -3383,7 +3383,7 @@ export function applyPowerMode(mode: string): void { export function applyAngleTuning(degrees: number): void { stageChange({ key: "angle-tuning", - label: `Angle tuning ${degrees}00b0`, + label: `Angle tuning ${degrees}°`, command: "Change the angle tuning", progress: "Changing angle tuning…", preview: (status) => { status.angleTuning = degrees; },