mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
the default column now works again in the autotype fix window
This commit is contained in:
@@ -150,8 +150,9 @@ NSString *const kMPIconCell = @"IconCell";
|
||||
}
|
||||
else {
|
||||
BOOL isMalformed = [MPDocument isCandidateForMalformedAutotype:item];
|
||||
BOOL isDefault = [entry.autotype hasDefaultKeystrokeSequence] || [group hasDefaultAutotypeSequence] || [association hasDefaultKeystrokeSequence];
|
||||
if([[tableColumn identifier] isEqualToString:kMPIsDefaultCell]) {
|
||||
return isMalformed ? @"Yes" : @"No";
|
||||
return isDefault ? @"Yes" : @"No";
|
||||
}
|
||||
else if( [[tableColumn identifier] isEqualToString:kMPIconCell]) {
|
||||
return isMalformed ? [MPIconHelper icon:MPIconWarning] : nil;
|
||||
|
||||
Reference in New Issue
Block a user