Skip to content

Commit

Permalink
Ignore positive offsets when not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Sephiroth87 committed Aug 1, 2012
1 parent 4ff1d58 commit 06e26ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ODRefreshControl/ODRefreshControl.m
Expand Up @@ -139,6 +139,10 @@ - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(N
} else {
return;
}
} else {
if (offset >= 0) {
return;
}
}
}

Expand Down

0 comments on commit 06e26ff

Please sign in to comment.