Skip to content

Commit

Permalink
Add super call in FLEView reshape (flutter#8335)
Browse files Browse the repository at this point in the history
NSOpenGLView reshape is annotated with NS_REQUIRES_SUPER. This avoids
build failures when building with `-Wobjc-missing-super-calls`.
  • Loading branch information
cbracken authored Mar 27, 2019
1 parent cb8eb80 commit 4efc321
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions shell/platform/darwin/macos/framework/Source/FLEView.mm
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ - (BOOL)isOpaque {
}

- (void)reshape {
[super reshape];
[_reshapeListener viewDidReshape:self];
}

Expand Down

0 comments on commit 4efc321

Please sign in to comment.