From 7fa49824c65a2a6b80c9ea2418819f1cc33c1b40 Mon Sep 17 00:00:00 2001 From: piotrpekala7 <31202938+piotrpekala7@users.noreply.github.com> Date: Tue, 9 Jun 2020 12:34:14 +0200 Subject: [PATCH] Update node.ts --- src/app/cartography/widgets/node.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/cartography/widgets/node.ts b/src/app/cartography/widgets/node.ts index 7d038ac2..19be2d8c 100644 --- a/src/app/cartography/widgets/node.ts +++ b/src/app/cartography/widgets/node.ts @@ -88,12 +88,12 @@ export class NodeWidget implements Widget { .attr('xnode:href', (n: MapNode) => n.symbolUrl) .attr('width', (n: MapNode) => { if (!n.width) return 60; - if (n.width > 200) return 200; + if (n.width > 64) return 64; return n.width; }) .attr('height', (n: MapNode) => { if (!n.height) return 60; - if (n.height > 200) return 200; + if (n.height > 64) return 64; return n.height; }) .attr('x', (n: MapNode) => 0)