mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
Various Fixes
This commit is contained in:
@@ -114,7 +114,28 @@
|
||||
}
|
||||
|
||||
- (void)setContentSize:(CGSize)contentSize {
|
||||
[super setContentSize:contentSize];
|
||||
if (_shouldBlockPanGesture) {
|
||||
return;
|
||||
}
|
||||
[super setContentSize:contentSize];
|
||||
}
|
||||
|
||||
- (void)setContentOffset:(CGPoint)contentOffset {
|
||||
if (_shouldBlockPanGesture) {
|
||||
return;
|
||||
}
|
||||
[super setContentOffset:contentOffset];
|
||||
}
|
||||
|
||||
- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated {
|
||||
if (_shouldBlockPanGesture) {
|
||||
return;
|
||||
}
|
||||
[super setContentOffset:contentOffset animated:animated];
|
||||
}
|
||||
|
||||
- (void)setBounds:(CGRect)bounds {
|
||||
[super setBounds:bounds];
|
||||
}
|
||||
|
||||
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
|
||||
|
||||
Reference in New Issue
Block a user