fix zero-coalescing roughness (#924)

pull/928/head
David Luzar 5 years ago committed by GitHub
parent 2db2f3f5e4
commit 3a5ca27600
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -56,7 +56,7 @@ export function restore(
id: element.id || nanoid(), id: element.id || nanoid(),
fillStyle: element.fillStyle || "hachure", fillStyle: element.fillStyle || "hachure",
strokeWidth: element.strokeWidth || 1, strokeWidth: element.strokeWidth || 1,
roughness: element.roughness || 1, roughness: element.roughness ?? 1,
opacity: opacity:
element.opacity === null || element.opacity === undefined element.opacity === null || element.opacity === undefined
? 100 ? 100

Loading…
Cancel
Save