1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-11 05:05:23 +03:00

Fix #536: Class Pattern has internal constructor

This commit is contained in:
Yuri Strot 2019-03-01 23:52:03 +07:00
parent 99c9f79625
commit ec167bf9f7

View File

@ -4,7 +4,7 @@ open class Pattern: Fill {
public let bounds: Rect
public let userSpace: Bool
init(content: Node, bounds: Rect, userSpace: Bool = false) {
public init(content: Node, bounds: Rect, userSpace: Bool = false) {
self.content = content
self.bounds = bounds
self.userSpace = userSpace