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

Fix a bug where the "Edit password" button would change your password into dots. Issue 5712.

parent a3f9ccd2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -145,8 +145,10 @@ static NSString *const kPasswordManagersShouldReloadData = @"kPasswordManagersSh
 
- (IBAction)edit:(id)sender {
if ([_tableView selectedRow] >= 0) {
NSInteger row = _tableView.selectedRow;
[self setPasswordBeingShown:[self selectedPassword] onRow:row];
[_tableView editColumn:[[_tableView tableColumns] indexOfObject:_passwordColumn]
row:[_tableView selectedRow]
row:row
withEvent:nil
select:YES];
}
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