From 5623f3f02f0de19dc5a4aeb0c13945d49691e9a7 Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Sat, 25 May 2024 07:43:55 +0700 Subject: [PATCH] Use different arrow symbol in action selection box --- src/modules/controller-shortcut.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/controller-shortcut.ts b/src/modules/controller-shortcut.ts index aafdab5..b627a72 100644 --- a/src/modules/controller-shortcut.ts +++ b/src/modules/controller-shortcut.ts @@ -255,7 +255,7 @@ export class ControllerShortcut { } if (Array.isArray(label)) { - label = label.join(' > '); + label = label.join(' ❯ '); } const $option = CE('option', {value: action}, label);