We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d05e79c commit 610f045Copy full SHA for 610f045
src/renderers/_base.ts
@@ -9094,12 +9094,9 @@ export abstract class RendererBase {
9094
.attr("dominant-baseline", "hanging")
9095
.move(0, 0);
9096
9097
- console.log(`nested vbox before moving: ${JSON.stringify(nested.viewbox())}`);
9098
// Now place the whole group below the board
9099
// const placed = this.rootSvg.use(nested);
9100
nested.move(box.x, placeY);
9101
- console.log(`nested vbox after moving: ${JSON.stringify(nested.viewbox())}`);
9102
- console.log(`nested height: ${JSON.stringify(nested.bbox())}`)
9103
placeY += nested.bbox().height + (this.cellsize * 0.5);
9104
}
9105
0 commit comments