Skip to content

Commit 50e2aac

Browse files
committed
Update package
1 parent 6b4acea commit 50e2aac

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Sources/SwiftUIX/Intermodular/Helpers/AppKit or UIKit/AppKitOrUIKit.swift

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,21 @@ public typealias AppKitOrUIKitGraphicsImageRenderer = NSGraphicsImageRenderer
7373

7474
extension NSEdgeInsets {
7575
public var _SwiftUI_edgeInsets: EdgeInsets {
76-
EdgeInsets(top: top, leading: left, bottom: bottom, trailing: right)
76+
EdgeInsets(
77+
top: top,
78+
leading: left,
79+
bottom: bottom,
80+
trailing: right
81+
)
7782
}
7883
}
7984

8085
extension NSImage.SymbolConfiguration {
8186
public convenience init(pointSize: CGFloat) {
82-
self.init(pointSize: pointSize, weight: .regular)
87+
self.init(
88+
pointSize: pointSize,
89+
weight: .regular
90+
)
8391
}
8492
}
8593
extension NSSize {

0 commit comments

Comments
 (0)