Skip to content

Commit e71ec26

Browse files
committed
调整视图宽度判断条件
1 parent 2b5cff6 commit e71ec26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DYYY.xm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4279,7 +4279,7 @@ static CGFloat DYYYDesiredMTKViewShiftOffset(UIView *view) {
42794279
}
42804280
CGFloat viewWidth = CGRectGetWidth(view.bounds);
42814281
CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width;
4282-
if (viewWidth < screenWidth * 0.75f) {
4282+
if (viewWidth < screenWidth * 0.995f) {
42834283
return 0.0f;
42844284
}
42854285
CGFloat tabHeight = DYYYCurrentTabHeight();

0 commit comments

Comments
 (0)