From 12b8e2b27902707f289d790d2c943a342c8aefe6 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sat, 17 Jul 2021 17:08:28 +0200 Subject: slightly less dramatic fade --- app/components/graph/graph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/components') diff --git a/app/components/graph/graph.tsx b/app/components/graph/graph.tsx index 1b3bab8..7e0b77e 100644 --- a/app/components/graph/graph.tsx +++ b/app/components/graph/graph.tsx @@ -212,7 +212,7 @@ export const Graph = observer(function Graph(props: GraphProps): JSX.Element { ctx.textAlign = 'center'; ctx.textBaseline = 'middle'; - ctx.fillStyle = 'rgb(255, 255, 255, ' + Math.min(4*(globalScale - physics.labelScale)/physics.labelScale, 1) + ')'; + ctx.fillStyle = 'rgb(255, 255, 255, ' + Math.min(3*(globalScale - physics.labelScale)/physics.labelScale, 1) + ')'; ctx.fillText(label, node.x, node.y); node.__bckgDimensions = bckgDimensions; // to re-use in nodePointerAreaPaint -- cgit v1.2.3