File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ -(void)handleGesture:(UIScreenEdgePanGestureRecognizer *)gestureRecognizer {
72
72
} else if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
73
73
self.interactionInProgress = NO ;
74
74
CFTimeInterval timeInterval = CACurrentMediaTime () - self.transitionStartTime ;
75
- if (self._shouldCompleteTransition || (self._couldPossiblyCompleteTransition && timeInterval < 0.25 )) {
75
+ if (self._shouldCompleteTransition || (self._couldPossiblyCompleteTransition && timeInterval < 0.15 )) {
76
76
[self finishInteractiveTransition ];
77
77
} else {
78
78
[self cancelInteractiveTransition ];
Original file line number Diff line number Diff line change @@ -523,6 +523,14 @@ -(void)setSeparatorColor:(UIColor *)color {
523
523
%orig ([self separatorColor ]);
524
524
}
525
525
526
+ -(UIColor *)backgroundColor {
527
+ return [UIColor clearColor ];
528
+ }
529
+
530
+ -(void )setBackgroundColor:(UIColor *)color {
531
+ %orig ([self backgroundColor ]);
532
+ }
533
+
526
534
%end
527
535
528
536
%hook CKConversationListCell
You can’t perform that action at this time.
0 commit comments