Skip to content
Snippets Groups Projects

fix: ensure nodelink vis always appears centered in the view

Merged Dennis Collaris requested to merge fix/nl-center into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -812,8 +812,8 @@ export const NLPixi = forwardRef((props: Props, refExternal) => {
let stopped = 0;
const widthHalf = app.renderer.width / 2;
const heightHalf = app.renderer.height / 2;
const widthHalf = app.renderer.width / (2 * window.devicePixelRatio);
const heightHalf = app.renderer.height / (2 * window.devicePixelRatio);
graph.current.nodes.forEach((node, i) => {
if (!layoutAlgorithm.current) return;
const gfx = nodeMap.current.get(node._id);
Loading