Don't show the blue outline when bloburl is set (#937)
This commit is contained in:
parent
5ca6b3fafa
commit
cd8a897b96
|
|
@ -65,14 +65,15 @@ impl LayerData for NodeGraphFrameLayer {
|
||||||
blob_url,
|
blob_url,
|
||||||
matrix
|
matrix
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
let _ = write!(
|
||||||
|
svg,
|
||||||
|
r#"<rect width="{}" height="{}" fill="none" stroke="var(--color-data-vector)" stroke-width="3" stroke-dasharray="8" transform="matrix({})" />"#,
|
||||||
|
width.abs(),
|
||||||
|
height.abs(),
|
||||||
|
matrix,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
let _ = write!(
|
|
||||||
svg,
|
|
||||||
r#"<rect width="{}" height="{}" fill="none" stroke="var(--color-data-vector)" stroke-width="3" stroke-dasharray="8" transform="matrix({})" />"#,
|
|
||||||
width.abs(),
|
|
||||||
height.abs(),
|
|
||||||
matrix,
|
|
||||||
);
|
|
||||||
|
|
||||||
let _ = svg.write_str(r#"</g>"#);
|
let _ = svg.write_str(r#"</g>"#);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue