Skip to content

Commit

Permalink
Merge pull request #346 from nikolay-dementiev/feature
Browse files Browse the repository at this point in the history
Nil-Safety for #337, thanks @nikolay-dementiev
  • Loading branch information
Jonas-Taha El Sesiy committed Sep 14, 2016
2 parents 562a59b + 655431f commit a4cba12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CVCalendar/CVCalendarDayView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ public final class CVCalendarDayView: UIView {
selectionView?.setNeedsDisplay()
topMarkerSetup()
preliminarySetup()
supplementarySetup()
if date != nil {
supplementarySetup()
}
}
}
}
Expand Down

0 comments on commit a4cba12

Please sign in to comment.