Skip to content

Instantly share code, notes, and snippets.

@keefo
Created August 26, 2012 20:47
Show Gist options
  • Save keefo/3483501 to your computer and use it in GitHub Desktop.
Save keefo/3483501 to your computer and use it in GitHub Desktop.
willPositionSheet
- (NSRect)window:(NSWindow *)window willPositionSheet:(NSWindow *)sheet
usingRect:(NSRect)rect
{
rect.origin.y -= 14; // or as much as we need
return rect;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment