Skip to content
Snippets Groups Projects
Commit e6ee6c67 authored by George Nachman's avatar George Nachman
Browse files

Make a double click on the first column of the password manager's table send...

Make a double click on the first column of the password manager's table send the password. Issue 4639.
parent 06e8178c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -113,9 +113,13 @@ static NSString *const kPasswordManagersShouldReloadData = @"kPasswordManagersSh
}
 
- (void)doubleClickOnTableView:(id)sender {
if (!_passwordBeingShown && [_tableView selectedRow] >= 0) {
[self setPasswordBeingShown:[self selectedPassword] onRow:[_tableView selectedRow]];
[_tableView reloadData];
if ([_tableView clickedColumn] == 1) {
if (!_passwordBeingShown && [_tableView selectedRow] >= 0) {
[self setPasswordBeingShown:[self selectedPassword] onRow:[_tableView selectedRow]];
[_tableView reloadData];
}
} else if ([_tableView selectedRow] >= 0) {
[self enterPassword:nil];
}
}
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment