Skip to content
Snippets Groups Projects
Commit f1d65bf6 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 316b855b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -229,8 +229,10 @@ static BOOL sAuthenticated;
 
- (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