Commit ae30c0c4 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* play after loading intf.

parent 595f0c8f
...@@ -68,6 +68,7 @@ int E_(OpenIntf) ( vlc_object_t *p_this ) ...@@ -68,6 +68,7 @@ int E_(OpenIntf) ( vlc_object_t *p_this )
p_intf->p_sys->o_sendport = [[NSPort port] retain]; p_intf->p_sys->o_sendport = [[NSPort port] retain];
p_intf->p_sys->p_sub = msg_Subscribe( p_intf ); p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
p_intf->b_play = VLC_TRUE;
p_intf->pf_run = Run; p_intf->pf_run = Run;
[[VLCApplication sharedApplication] autorelease]; [[VLCApplication sharedApplication] autorelease];
...@@ -488,7 +489,21 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key ) ...@@ -488,7 +489,21 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key )
[self setSubmenusEnabled: FALSE]; [self setSubmenusEnabled: FALSE];
[self manageVolumeSlider]; [self manageVolumeSlider];
/* Check if we need to start playing */
if( p_intf->b_play )
{
playlist_t *p_playlist =
(playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
FIND_ANYWHERE );
NSLog( @"Ja Nu!!!!");
if( p_playlist )
{
playlist_Play( p_playlist );
vlc_object_release( p_playlist );
}
}
} }
- (void)initStrings - (void)initStrings
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment