Skip to content

Commit 6513e0f

Browse files
committed
Fix table view background color
1 parent 594b590 commit 6513e0f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

DDCustomInteraction.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ -(void)handleGesture:(UIScreenEdgePanGestureRecognizer *)gestureRecognizer {
7272
} else if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
7373
self.interactionInProgress = NO;
7474
CFTimeInterval timeInterval = CACurrentMediaTime() - self.transitionStartTime;
75-
if(self._shouldCompleteTransition || (self._couldPossiblyCompleteTransition && timeInterval < 0.25)) {
75+
if(self._shouldCompleteTransition || (self._couldPossiblyCompleteTransition && timeInterval < 0.15)) {
7676
[self finishInteractiveTransition];
7777
} else {
7878
[self cancelInteractiveTransition];

Tweak.mm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,14 @@ -(void)setSeparatorColor:(UIColor *)color {
523523
%orig([self separatorColor]);
524524
}
525525

526+
-(UIColor *)backgroundColor {
527+
return [UIColor clearColor];
528+
}
529+
530+
-(void)setBackgroundColor:(UIColor *)color {
531+
%orig([self backgroundColor]);
532+
}
533+
526534
%end
527535

528536
%hook CKConversationListCell

0 commit comments

Comments
 (0)