<customObject id="-2" userLabel="File's Owner" customClass="VLCFSPanelController">
<connections>
<outlet property="backwardButton" destination="7QH-jb-QdM" id="VnK-HH-sNu"/>
- <outlet property="controllsView" destination="Npt-C5-K77" id="LzR-iZ-qy0"/>
+ <outlet property="controlsView" destination="Npt-C5-K77" id="Dnt-ku-O6u"/>
<outlet property="elapsedTime" destination="nJc-M4-sMF" id="DFf-yw-e6A"/>
<outlet property="forwardButton" destination="jSN-hV-r5D" id="3PN-jP-xPY"/>
<outlet property="mediaTitle" destination="Vd8-0f-Usz" id="NZ0-KY-l4T"/>
@property (readwrite) NSWindow *voutWindow;
@property (readwrite, weak) NSTimer *hideTimer;
-@property IBOutlet NSView *controllsView;
+@property IBOutlet NSView *controlsView;
@property IBOutlet NSButton *playPauseButton;
@property IBOutlet NSButton *forwardButton;
@property IBOutlet NSButton *backwardButton;
/* Inject view in view hierarchy */
[self.window setContentView:view];
- [_controllsView setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
- [self.window.contentView addSubview:_controllsView];
+ [_controlsView setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
+ [self.window.contentView addSubview:_controlsView];
}
#endif
/* Inject view in view hierarchy */
[self.window setContentView:view];
- [self.window.contentView addSubview:_controllsView];
+ [self.window.contentView addSubview:_controlsView];
}
- (void)dealloc