Commit caad85c4 authored by Jon Lech Johansen's avatar Jon Lech Johansen

* ./plugins/macosx/vout_macosx.m: added missing keyDown(space) = pause

parent 57e1951e
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout_macosx.m: MacOS X video output plugin * vout_macosx.m: MacOS X video output plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: vout_macosx.m,v 1.8 2002/07/15 01:54:04 jlj Exp $ * $Id: vout_macosx.m,v 1.9 2002/07/15 02:09:57 jlj Exp $
* *
* Authors: Colin Delacroix <colin@zoy.org> * Authors: Colin Delacroix <colin@zoy.org>
* Florian G. Pflug <fgp@phlo.org> * Florian G. Pflug <fgp@phlo.org>
...@@ -745,6 +745,10 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -745,6 +745,10 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
p_vout->p_vlc->b_die = 1; p_vout->p_vlc->b_die = 1;
break; break;
case ' ':
input_SetStatus( p_vout, INPUT_STATUS_PAUSE );
break;
default: default:
[super keyDown: o_event]; [super keyDown: o_event];
break; break;
......
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