summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/SvgMap.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/src/renderer/components/SvgMap.tsx b/gui/src/renderer/components/SvgMap.tsx
index cae3c68ed6..b72ea36bbd 100644
--- a/gui/src/renderer/components/SvgMap.tsx
+++ b/gui/src/renderer/components/SvgMap.tsx
@@ -31,8 +31,10 @@ const mapStyle = {
height: '100%',
backgroundColor: '#192e45',
};
-const zoomableGroupStyle = {
+const zoomableGroupStyle: React.CSSProperties = {
transition: `transform ${MOVE_SPEED}ms ease-out`,
+ // Workaround to prevent map blurryness in Electron 13+
+ zoom: '100.01%',
};
function getMarkerImageStyle(zoom: number) {