Skip to content

Commit

Permalink
Merge branch 'mrackwitz:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
paulvaldes authored Jan 22, 2024
2 parents 33673e6 + 5157e87 commit 32241fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Components/MRProgressOverlayView.m
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,9 @@ - (void)applyProgressAnimated:(BOOL)animated {
NSStringFromSelector(@selector(setProgress:animated:)));
#endif
}
[((id)self.modeView) setProgress:self.progress];
// [((id)self.modeView) setProgress:self.progress];
// Fixes build issue in Xcode 15
[self.modeView performSelector:@selector(setProgress:) withObject:[NSNumber numberWithFloat:self.progress]];
} else {
NSAssert(self.mode == MRProgressOverlayViewModeDeterminateCircular
|| self.mode == MRProgressOverlayViewModeDeterminateHorizontalBar,
Expand Down

0 comments on commit 32241fc

Please sign in to comment.