File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ import AppKit
55#endif
66
77public extension PEdgeInsets {
8- public func minInsets( _ insets: PEdgeInsets ) -> PEdgeInsets {
8+ func minInsets( _ insets: PEdgeInsets ) -> PEdgeInsets {
99 return PEdgeInsets ( top: minValue ( self . top, minValue: insets. top) ,
1010 left: minValue ( self . left, minValue: insets. left) ,
1111 bottom: minValue ( self . bottom, minValue: insets. bottom) ,
1212 right: minValue ( self . right, minValue: insets. right) )
1313 }
1414
15- public func minInsets( dx: CGFloat , dy: CGFloat ) -> PEdgeInsets {
15+ func minInsets( dx: CGFloat , dy: CGFloat ) -> PEdgeInsets {
1616 return PEdgeInsets ( top: minValue ( self . top, minValue: dy) ,
1717 left: minValue ( self . left, minValue: dx) ,
1818 bottom: minValue ( self . bottom, minValue: dy) ,
You can’t perform that action at this time.
0 commit comments