Changeset 185761 in webkit
- Timestamp:
- Jun 19, 2015, 12:10:51 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/ios/WebVideoFullscreenInterfaceAVKit.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r185756 r185761 1 2015-06-19 Jeremy Jones <jeremyj@apple.com> 2 3 Fullscreen view should not update bounds of video when in PiP. 4 https://bugs.webkit.org/show_bug.cgi?id=146134 5 6 Reviewed by Darin Adler. 7 8 Don't update bounds on video layer when it is not a child. 9 10 * platform/ios/WebVideoFullscreenInterfaceAVKit.mm: 11 (-[WebAVVideoLayer setBounds:]): 12 1 13 2015-06-19 Zalan Bujtas <zalan@apple.com> 2 14 -
trunk/Source/WebCore/platform/ios/WebVideoFullscreenInterfaceAVKit.mm
r185754 r185761 694 694 [super setBounds:bounds]; 695 695 696 [_videoSublayer setPosition:CGPointMake(CGRectGetMidX(bounds), CGRectGetMidY(bounds))]; 697 [_videoSublayer setBounds:bounds]; 696 if ([_videoSublayer superlayer] == self) { 697 [_videoSublayer setPosition:CGPointMake(CGRectGetMidX(bounds), CGRectGetMidY(bounds))]; 698 [_videoSublayer setBounds:bounds]; 699 } 698 700 } 699 701
Note:
See TracChangeset
for help on using the changeset viewer.