fix: Reduce overlap of diagram and toolbars

This commit is contained in:
Sidharth Vinod
2025-03-13 10:22:36 -07:00
parent 72616fca7a
commit c3faf2ff42
+1 -1
View File
@@ -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;
}
}