mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for a 32-bit build problem in MovieComponent
This commit is contained in:
parent
67600e98fd
commit
511fe482e8
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ struct MovieComponent::Pimpl
|
|||
|
||||
auto frame = CGRectMake (0, 0, nativeSize.width, nativeSize.height);
|
||||
|
||||
view = [[NSView alloc] initWithFrame: frame];
|
||||
view = [[NSView alloc] initWithFrame: NSRectFromCGRect (frame)];
|
||||
[view setHidden: NO];
|
||||
[view setNeedsDisplay: YES];
|
||||
[view setWantsLayer: YES];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue