i found this line in PXSourceList.m:
[icon setFlipped:[self isFlipped]];
but it creates some issues when you try to use this image in other places ...
the solution is to remove the line, and replace this line:
[icon drawInRect:iconRect fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1];
by this one:
[icon drawInRect:iconRect fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0 respectFlipped:YES hints:nil];
It would be perfect if you can use it like this in the next revision. thanks :)
i found this line in PXSourceList.m: [icon setFlipped:[self isFlipped]]; but it creates some issues when you try to use this image in other places ... the solution is to remove the line, and replace this line: [icon drawInRect:iconRect fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1]; by this one: [icon drawInRect:iconRect fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0 respectFlipped:YES hints:nil];
It would be perfect if you can use it like this in the next revision. thanks :)