Disable scrolling in MessageBodyTextView.

Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Ivan Sein 2022-05-02 14:58:41 +02:00
Родитель 49568fcc71
Коммит ca8384b8fa
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -41,6 +41,7 @@
self.translatesAutoresizingMaskIntoConstraints = NO;
self.backgroundColor = [UIColor clearColor];
self.editable = NO;
self.scrollEnabled = NO;
self.delegate = self;
return self;