Skip to content

Commit

Permalink
Skeleton CPGraphicsContext isFlipped.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljungberg committed Mar 11, 2012
1 parent 7405444 commit ed1d77c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions AppKit/CPGraphicsContext.j
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,17 @@ var CPGraphicsContextCurrent = nil;
return _graphicsPort;
}

/*!
(Not implemented. Always returns Cappuccino's default, `YES`.)
Return `isFlipped` of the receiver's focused view, unless no view is focused in which case the receiver's
`flipped` flag, as set by `graphicsContextWithGraphicsPort:flipped:`, is returned.
Note: Cappuccino is flipped by default.
*/
- (BOOL)isFlipped
{
return YES;
}

@end

0 comments on commit ed1d77c

Please sign in to comment.