Skip to content

Commit

Permalink
Activation de la zone de saisie email à l'apparition de la vue de cré…
Browse files Browse the repository at this point in the history
…ation de salon DM
  • Loading branch information
NicolasBuquet committed Oct 3, 2023
1 parent da37f78 commit db33205
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Riot/Modules/StartChat/StartChatViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,13 @@ - (void)viewDidLayoutSubviews
[self.contactsTableView vc_relayoutHeaderView];
}

// Tchap: automatically give focus to searchBar field to invoke keyboard when view did appear.
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];

[_searchBarView becomeFirstResponder];
}

#pragma mark -

- (void)setIsAddParticipantSearchBarEditing:(BOOL)isAddParticipantSearchBarEditing
Expand Down
1 change: 1 addition & 0 deletions changelog.d/884.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Activation de la zone de saisie email à l'apparition de la vue de création de salon DM

0 comments on commit db33205

Please sign in to comment.