From 96a5d5f372d1a2fdf74b3022a9a2e9f42042494c Mon Sep 17 00:00:00 2001 From: "COT001\\DEV" <871066422@qq.com> Date: Wed, 1 Apr 2026 13:59:36 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=AD=E5=A4=B4=E6=A0=B7=E5=BC=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index efb3d73..2a4e516 100644 --- a/main.py +++ b/main.py @@ -589,10 +589,9 @@ class ArrowItem(DashboardItem): # 绘制连接线 painter.drawLine(start, end) - # 绘制两端圆点(代替箭头) + # 绘制终点圆点(箭头指向) w = float(max(1, self._width)) - dot_radius = max(4.0, min(12.0, 3.0 + w * 1.2)) # 圆点半径随线宽缩放 - painter.drawEllipse(start, dot_radius, dot_radius) + dot_radius = max(4.0, min(12.0, 3.0 + w * 1.2)) painter.drawEllipse(end, dot_radius, dot_radius)