浏览代码

MacOSX/Framework/Examples: Updatee example to properly scale video within window.

Faustino Osuna 17 年之前
父节点
当前提交
558ee891e3
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      Examples/test/Controller.m

+ 2 - 1
Examples/test/Controller.m

@@ -20,7 +20,8 @@ static void *sleepForMe(void)
     videoView = [[VLCVideoView alloc] initWithFrame:rect];
     [videoHolderView addSubview:videoView];
     [videoView setAutoresizingMask: NSViewHeightSizable|NSViewWidthSizable];
-
+    videoView.fillScreen = YES;
+    
     playlist = [[VLCMediaList alloc] init];
     [playlist addObserver:self forKeyPath:@"media" options:NSKeyValueObservingOptionNew context:nil];