I have an NSCell and I need to draw an image in its background. For some reason, the image is not being drawn as it's supposed to be. This is the image I want to draw:

And this is how it's being drawn:

This is my code:
NSImage *img = [NSImage imageNamed:@"leftselected.png"];
[img drawInRect:NSMakeRect(0,0,9,25) fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
It's also worth mentioning that I'm running the app on Tiger. I tried using other methods to draw the image with no luck. What am I doing wrong?
leftselected.pngis definitely 9x25px? – deanWombourne Feb 20 at 1:04