Skip to content
Snippets Groups Projects

fix: fix edge width setting

Merged Dennis Collaris requested to merge feat/nodelink-link-width into main
2 files
+ 6
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -311,6 +311,10 @@ export const NLPixi = (props: Props) => {
}
}
},
getLinkWidth() {
return props.configuration.edges.width.width || config.LINE_WIDTH_DEFAULT;
}
}));
function resize() {
@@ -502,7 +506,7 @@ export const NLPixi = (props: Props) => {
// let color = link.color || 0x000000;
let color = config.LINE_COLOR_DEFAULT;
let style = config.LINE_WIDTH_DEFAULT;
let style = imperative.current.getLinkWidth();
let alpha = linkMeta.alpha || 1;
if (linkMeta.mlEdge) {
color = config.LINE_COLOR_ML;
Loading