Skip to content

Commit

Permalink
SRRecorderControlStyle: Fix incorrect cache key comparison
Browse files Browse the repository at this point in the history
Refs #147
  • Loading branch information
Kentzo committed Aug 17, 2022
1 parent 141fd6a commit 3b1aa7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/ShortcutRecorder/SRRecorderControlStyle.m
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ - (BOOL)isEqual:(_SRRecorderControlStyleResourceLoaderCacheImageKey *)anObject

return [self.identifier isEqual:anObject.identifier] &&
[self.components isEqual:anObject.components] &&
[self.name isEqual:anObject];
[self.name isEqual:anObject.name];
}

- (id)copyWithZone:(NSZone *)aZone
Expand Down

0 comments on commit 3b1aa7e

Please sign in to comment.