From c3faf2ff42c5bd5edca2c78cb4dfbc2aaf85e570 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Thu, 13 Mar 2025 10:22:36 -0700 Subject: [PATCH] fix: Reduce overlap of diagram and toolbars --- src/lib/util/panZoom.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/panZoom.ts b/src/lib/util/panZoom.ts index 65f37ed7..eca92c18 100644 --- a/src/lib/util/panZoom.ts +++ b/src/lib/util/panZoom.ts @@ -99,7 +99,7 @@ export class PanZoomState { public reset() { this.pzoom?.reset(); // Zoom out a bit to avoid overlap with the toolbar - this.pzoom?.zoom(0.9); + this.pzoom?.zoom(0.875); this.isDirty = false; } }