Skip to content

Commit 782eba5

Browse files
committed
Fix for macOS < 10.9
1 parent f41af41 commit 782eba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ColorSetKit/ColorSetStream.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ - ( nullable NSColor * )readColor
186186
&& [ self read: 8 in: &a ]
187187
)
188188
{
189-
return [ NSColor colorWithRed: r green: g blue: b alpha: a ];
189+
return [ NSColor colorWithDeviceRed: r green: g blue: b alpha: a ];
190190
}
191191

192192
return nil;

0 commit comments

Comments
 (0)