I am currently trying to set a background color/pattern for an NSView that has a negative bounds origin. The problem is, that it only colors parts of the view (those where x>0 && y>0).
I understand, that I have to draw the background in the -(void)drawRect: function. How can I color the whole view, not just those parts where the coordinates are positive?
Origin: -65, -65
Size: 130, 130
I want to color the whole background