Changeset e563d38ce8b7dea895e85f16fc0dc571f70b5df9

Show
Ignore:
Timestamp:
24/03/08 07:04:49 (8 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1206338689 -0700
git-parent:

[78b7e38969213c8709a090eb07ec3b7797b2c1cb]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1206338658 -0700
Message:

Hide Mouse Timeout on mac.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/macosx/vout.m

    r6cf432c re563d38  
    852852{ 
    853853    [super manage]; 
     854    unsigned int i_mouse_hide_timeout = 
     855        var_GetInteger(p_vout, "mouse-hide-timeout") * 1000; 
    854856    if( p_vout->b_fullscreen ) 
    855857    { 
    856         if( mdate() - i_time_mouse_last_moved > 3000000
     858        if( mdate() - i_time_mouse_last_moved > i_mouse_hide_timeout
    857859        { 
    858860            [self hideMouse: YES];