mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
Don't show the blue outline when bloburl is set (#937)
This commit is contained in:
committed by
Keavon Chambers
parent
5ca6b3fafa
commit
cd8a897b96
@@ -65,14 +65,15 @@ impl LayerData for NodeGraphFrameLayer {
|
||||
blob_url,
|
||||
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>"#);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user