Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Nov 14, 2023
1 parent aa36664 commit fb358c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/NSView.m
Original file line number Diff line number Diff line change
Expand Up @@ -5218,7 +5218,7 @@ - (void) setContentCompressionResistancePriority: (NSLayoutPriority)priority

- (NSSize) intrinsicContentSize
{
return NSMakeSize(NSViewNoIntrinsicMetric, NSViewNoIntrinsicMetric)
return NSMakeSize(NSViewNoIntrinsicMetric, NSViewNoIntrinsicMetric);
}

- (CGFloat) baselineOffsetFromBottom
Expand Down

0 comments on commit fb358c3

Please sign in to comment.