Commit 03ea4d81 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* ./extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib

  - oops, i enlarged the timeslider by accident. fixed
* ./modules/gui/macosx/controls.m
  - fixed a mutex_lock issue
parent f746c5dc
......@@ -2,7 +2,7 @@
* controls.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: controls.m,v 1.11 2003/01/23 22:25:32 hartman Exp $
* $Id: controls.m,v 1.12 2003/01/23 22:57:28 hartman Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -222,12 +222,14 @@
case NSLeftMouseUp:
i_ff = 0;
vlc_mutex_lock( &p_playlist->object_lock );
if( p_playlist->i_size )
int i_playlist_size = p_playlist->i_size ;
vlc_mutex_unlock( &p_playlist->object_lock );
if( i_playlist_size )
{
playlist_Play( p_playlist );
}
vlc_mutex_unlock( &p_playlist->object_lock );
break;
default:
......
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