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

Fix a bug where non-ansi colors were in the hue/chroma vis

parent 992a8d99
No related branches found
No related tags found
No related merge requests found
......@@ -483,6 +483,9 @@ static NSString * const kColorGalleryURL = @"https://www.iterm2.com/colorgallery
}
- (void)updateHueChromaVisualizationForKey:(NSString *)key {
if (![self.chromaHueVisualizationKeys containsObject:key]) {
return;
}
NSDictionary *dict = [NSDictionary castFrom:[self objectForKey:key]];
NSColor *color = [dict colorValue];
if (color) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment