Commit 21fb8028 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* ./modules/gui/macosx/vout.m: Fixed the play/pause key shortcut.

parent 5fec93e1
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout.m: MacOS X video output plugin * vout.m: MacOS X video output plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2003 VideoLAN * Copyright (C) 2001-2003 VideoLAN
* $Id: vout.m,v 1.13 2003/01/16 13:49:44 hartman Exp $ * $Id: vout.m,v 1.14 2003/01/20 00:23:45 hartman 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>
...@@ -835,6 +835,10 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -835,6 +835,10 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
p_vout->p_vlc->b_die = VLC_TRUE; p_vout->p_vlc->b_die = VLC_TRUE;
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