Skip to content

Commit

Permalink
Compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nighthawk committed Sep 13, 2019
1 parent e5f414e commit facc490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/ASWeekSelectorView.m
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ - (void)setSelectedDate:(NSDate *)selectedDate animated:(BOOL)animated
completion:
^(BOOL finished) {
self.isAnimating = NO;
[self colorLabelForDate:self._selectedDate withTextColor:self.selectorLetterTextColor];
[self colorLabelForDate:selectedDate withTextColor:self.selectorLetterTextColor];
}];
}
}
Expand Down Expand Up @@ -513,7 +513,7 @@ - (void)animateSelectionToPreDrag
^{
self.selectionView.frame = selectionViewFrame;
} completion:^(BOOL finished) {
[self colorLabelForDate:self._selectedDate withTextColor:self.selectorLetterTextColor];
[self colorLabelForDate:self.selectedDate withTextColor:self.selectorLetterTextColor];
}];

self.preDragOffsetX = MAXFLOAT;
Expand Down

0 comments on commit facc490

Please sign in to comment.