From 92d4973eb0d02cf203c7cd1847a446f05969c30d Mon Sep 17 00:00:00 2001 From: Tyler Brown Cifu Shuster Date: Fri, 23 Oct 2020 08:24:06 -0700 Subject: [PATCH] clock: always draw large arc --- pkg/interface/src/views/apps/launch/components/tiles/clock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/interface/src/views/apps/launch/components/tiles/clock.js b/pkg/interface/src/views/apps/launch/components/tiles/clock.js index 64fcaf553..d939cdaab 100644 --- a/pkg/interface/src/views/apps/launch/components/tiles/clock.js +++ b/pkg/interface/src/views/apps/launch/components/tiles/clock.js @@ -107,7 +107,7 @@ const SvgArc = ({ start, end, ...rest }) => { const d = [ 'M', CX, CY, 'L', x1, y1, - 'A', RADIUS, RADIUS, '0', (isLarge ? '1' : '0'), '1', x2, y2, 'z' + 'A', RADIUS, RADIUS, '0', '1', '1', x2, y2, 'z' ].join(' '); return ;