From a059da94877e45a9a966a4c2e06936bd53aeb9f4 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Wed, 17 Jun 2020 15:04:34 +0200 Subject: [PATCH] tweaked globe symbol --- src/symbols.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/symbols.js b/src/symbols.js index 1024a628..21354717 100644 --- a/src/symbols.js +++ b/src/symbols.js @@ -1973,12 +1973,12 @@ SymbolMorph.prototype.renderSymbolGlobe = function (ctx, color) { ctx.beginPath(); ctx.moveTo(w / 2, l / 2); - ctx.arcTo(0, w / 2, w / 2, w, w * 0.66); + ctx.arcTo(0, w / 2, w / 2, w, w * 0.75); ctx.stroke(); ctx.beginPath(); ctx.moveTo(w / 2, l / 2); - ctx.arcTo(w, w / 2, w / 2, w, w * 0.66); + ctx.arcTo(w, w / 2, w / 2, w, w * 0.75); ctx.stroke(); };