Skip to content

Commit

Permalink
Replace call to super.init(node:frame:) with call to super.init(frame:)
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Davis <ryan@ittybittyapps.com>
  • Loading branch information
adamjcampbell and Rypac committed Aug 6, 2020
1 parent eeed391 commit f64a222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Afterpay/SVGView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ final class SVGView: Macaw.SVGView {
self.lightSVG = lightSVG
self.darkSVG = darkSVG

super.init(node: Group(), frame: .zero)
super.init(frame: .zero)

node = svg.node
backgroundColor = .clear
Expand Down

0 comments on commit f64a222

Please sign in to comment.