Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Activation de la zone de saisie email à l'apparition de la vue de cré… #885

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading