Swiftgram/submodules/LegacyComponents/Sources/TGMenuSheetCollectionView.m
2025-06-18 17:24:21 +02:00

19 lines
431 B
Objective-C

#import <LegacyComponents/TGMenuSheetCollectionView.h>
@implementation TGMenuSheetCollectionView
- (void)setContentOffset:(CGPoint)contentOffset
{
[super setContentOffset:contentOffset];
}
- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated
{
if (!self.isTracking && contentOffset.y < -self.contentInset.top)
return;
[super setContentOffset:contentOffset animated:animated];
}
@end