Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasgoutaland committed Apr 20, 2015
1 parent 65f466c commit 2f980c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SEFilterControl.h
Expand Up @@ -33,7 +33,7 @@ IB_DESIGNABLE
/* Set selected index, animated or not */
- (void) setSelectedIndex:(NSUInteger)index animated:(BOOL) animated;

@property (nonatomic, assign) BOOL continous; // If YES, slider will send updates its times selected index is updated, without waiting for a touch Up. Defualt is NO
@property (nonatomic, assign) BOOL continuous; // If YES, slider will send updates its times selected index is updated, without waiting for a touch Up. Default is NO
@property (nonatomic, strong) UIFont *titlesFont;
@property (nonatomic, strong) UIColor *titlesColor;
@property (nonatomic, strong) UIColor *titlesShadowColor;
Expand Down
4 changes: 2 additions & 2 deletions SEFilterControl.m
Expand Up @@ -139,7 +139,7 @@ - (void)applyDefaultConfiguration
_titlesColor = DEFAULT_TITLE_COLOR;
_titlesShadowColor = DEFAULT_TITLE_SHADOW_COLOR;

_continous = NO;
_continuous = NO;
}

- (void)commonInits:(NSArray *)titles
Expand Down Expand Up @@ -424,7 +424,7 @@ - (void)panGestureDetected:(UIPanGestureRecognizer *)panGesture {
animated:YES];
dragging = NO;
}
else if (_continous)
else if (_continuous)
{
// Update selected index if continuous
NSUInteger currentIndex = [self selectedTitleInPoint:_handler.center];
Expand Down
Binary file not shown.

0 comments on commit 2f980c5

Please sign in to comment.