Skip to content

Commit

Permalink
implement showsresizeindicator (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnathan-becker authored Nov 1, 2024
1 parent 5cd4323 commit 8204924
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Source/NSWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -2109,10 +2109,7 @@ - (NSPoint) cascadeTopLeftFromPoint: (NSPoint)topLeftPoint

- (BOOL) showsResizeIndicator
{
// TODO
NSLog(@"Method %s is not implemented for class %s",
"showsResizeIndicator", "NSWindow");
return YES;
return ([self styleMask] & NSResizableWindowMask) ? YES : NO;
}

- (void) setShowsResizeIndicator: (BOOL)show
Expand Down

0 comments on commit 8204924

Please sign in to comment.