mirror of
https://github.com/penpot/penpot.git
synced 2025-05-22 22:26:11 +02:00
🎉 Hidden layer support for wasm render
This commit is contained in:
parent
7c7ede9d0c
commit
07215357d6
5 changed files with 20 additions and 3 deletions
|
@ -51,6 +51,7 @@ pub struct Shape {
|
|||
fills: Vec<Fill>,
|
||||
pub blend_mode: BlendMode,
|
||||
pub opacity: f32,
|
||||
pub hidden: bool,
|
||||
}
|
||||
|
||||
impl Shape {
|
||||
|
@ -65,6 +66,7 @@ impl Shape {
|
|||
fills: vec![],
|
||||
blend_mode: BlendMode::default(),
|
||||
opacity: 1.,
|
||||
hidden: false,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue