From 8f296dc6d63cb04af41a84a352d3980fcbd63b96 Mon Sep 17 00:00:00 2001 From: Ethan0x0000 <3352979663@qq.com> Date: Mon, 15 Jun 2026 15:26:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=9B=BA=E5=AE=9A?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E9=A1=B9=E9=BC=A0=E6=A0=87=E6=82=AC=E5=81=9C?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E7=A7=BB=E5=8A=A8=E5=85=89=E6=A0=87=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Windows 上固定项的可拖拽列表使用了 cursor: move,导致鼠标悬停时显示 四向移动光标而非点击手指样式,改为 cursor: pointer。 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/renderer/src/components/common/CommandList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/components/common/CommandList.vue b/src/renderer/src/components/common/CommandList.vue index f86a1bcc..f47eafba 100644 --- a/src/renderer/src/components/common/CommandList.vue +++ b/src/renderer/src/components/common/CommandList.vue @@ -16,7 +16,7 @@ :ref="(el) => setItemRef(el, index)" class="app-item" :class="{ selected: index === selectedIndex }" - style="cursor: move" + style="cursor: pointer" :title="getTitleText(app)" @click="$emit('select', app)" @contextmenu.prevent="$emit('contextmenu', app)" From 1f8e51ed76bf739b0809e3ec0102210084dcd941 Mon Sep 17 00:00:00 2001 From: Ethan0x0000 <3352979663@qq.com> Date: Mon, 15 Jun 2026 15:36:11 +0800 Subject: [PATCH 2/2] =?UTF-8?q?refactor:=20=E7=A7=BB=E9=99=A4=E5=86=97?= =?UTF-8?q?=E4=BD=99=E5=86=85=E8=81=94=20cursor=20=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=EF=BC=8C=E7=94=B1=20CSS=20=E7=B1=BB=E7=BB=9F=E4=B8=80=E6=8E=A7?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- src/renderer/src/components/common/CommandList.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/renderer/src/components/common/CommandList.vue b/src/renderer/src/components/common/CommandList.vue index f47eafba..d3a0a696 100644 --- a/src/renderer/src/components/common/CommandList.vue +++ b/src/renderer/src/components/common/CommandList.vue @@ -16,7 +16,6 @@ :ref="(el) => setItemRef(el, index)" class="app-item" :class="{ selected: index === selectedIndex }" - style="cursor: pointer" :title="getTitleText(app)" @click="$emit('select', app)" @contextmenu.prevent="$emit('contextmenu', app)"