From 5c93d07a8e8b4c0b4cea76a5f4d259a08c1c277a Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 17 Aug 2025 16:06:38 +1000 Subject: internal: scale rounding properly --- modules/dashboard/Performance.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/dashboard/Performance.qml') diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml index 2667a1e..68281f6 100644 --- a/modules/dashboard/Performance.qml +++ b/modules/dashboard/Performance.qml @@ -168,7 +168,7 @@ RowLayout { ctx.reset(); ctx.lineWidth = res.thickness; - ctx.lineCap = "round"; + ctx.lineCap = Appearance.rounding.scale === 0 ? "square" : "round"; const radius = (Math.min(width, height) - ctx.lineWidth) / 2; const cx = centerX; -- cgit v1.2.3-freya