mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-26 03:20:50 +02:00
MESSENGER-3671 Merge FOSS 1.9.8
Conflicts: - CommonConfiguration.swift - BuildSettings.swift - Generated/images.Swift - RoomMemberDetailsViewController.m - LiveLocationSharingViewModell - PinCodeEnterViewController.m
This commit is contained in:
@@ -1557,10 +1557,6 @@ static CGSize kThreadListBarButtonItemImageSize;
|
||||
*/
|
||||
- (void)createDiscussionIfNeeded:(void (^)(BOOL readyToSend))onComplete
|
||||
{
|
||||
// Disable the input tool bar during this operation. This prevents us from creating several discussions, or
|
||||
// trying to send several invites.
|
||||
self.inputToolbarView.userInteractionEnabled = false;
|
||||
|
||||
void(^completion)(BOOL) = ^(BOOL readyToSend) {
|
||||
self.inputToolbarView.userInteractionEnabled = true;
|
||||
if (onComplete) {
|
||||
@@ -1570,6 +1566,10 @@ static CGSize kThreadListBarButtonItemImageSize;
|
||||
|
||||
if (self.directChatTargetUser)
|
||||
{
|
||||
// Disable the input tool bar during this operation. This prevents us from creating several discussions, or
|
||||
// trying to send several invites.
|
||||
self.inputToolbarView.userInteractionEnabled = false;
|
||||
|
||||
[self createDiscussionWithUser:self.directChatTargetUser completion:completion];
|
||||
}
|
||||
else
|
||||
@@ -7826,6 +7826,16 @@ static CGSize kThreadListBarButtonItemImageSize;
|
||||
[self mention:member];
|
||||
}
|
||||
|
||||
- (void)userSuggestionCoordinatorBridge:(UserSuggestionCoordinatorBridge *)coordinator didUpdateViewHeight:(CGFloat)height
|
||||
{
|
||||
if (self.userSuggestionContainerHeightConstraint.constant != height)
|
||||
{
|
||||
self.userSuggestionContainerHeightConstraint.constant = height;
|
||||
|
||||
[self.view layoutIfNeeded];
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark - ThreadsCoordinatorBridgePresenterDelegate
|
||||
|
||||
- (void)threadsCoordinatorBridgePresenterDelegateDidComplete:(ThreadsCoordinatorBridgePresenter *)coordinatorBridgePresenter
|
||||
|
||||
Reference in New Issue
Block a user