Skip to content

Commit 040ce48

Browse files
committed
Merge pull request #50 from ilidar/master
Fixed issue with hidden progress bar;
2 parents 8559bf8 + 69f78a8 commit 040ce48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/NavigationController/UINavigationController+M13ProgressViewBar.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ - (CALayer *)getIndeterminateLayer
443443

444444
- (BOOL)isShowingProgressBar
445445
{
446-
return objc_getAssociatedObject(self, &isShowingProgressKey);
446+
return [objc_getAssociatedObject(self, &isShowingProgressKey) boolValue];
447447
}
448448

449449
- (void)setPrimaryColor:(UIColor *)primaryColor

0 commit comments

Comments
 (0)