Commit 3fe47215 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Fix an issue with changed names of seek hotkeys in osx intf.

parent 25ffd3f7
...@@ -203,7 +203,7 @@ ...@@ -203,7 +203,7 @@
{ {
vlc_value_t val; vlc_value_t val;
intf_thread_t * p_intf = VLCIntf; intf_thread_t * p_intf = VLCIntf;
val.i_int = config_GetInt( p_intf, "key-jump+10sec" ); val.i_int = config_GetInt( p_intf, "key-jump+short" );
var_Set( p_intf->p_vlc, "key-pressed", val ); var_Set( p_intf->p_vlc, "key-pressed", val );
} }
...@@ -211,7 +211,7 @@ ...@@ -211,7 +211,7 @@
{ {
vlc_value_t val; vlc_value_t val;
intf_thread_t * p_intf = VLCIntf; intf_thread_t * p_intf = VLCIntf;
val.i_int = config_GetInt( p_intf, "key-jump-10sec" ); val.i_int = config_GetInt( p_intf, "key-jump-short" );
var_Set( p_intf->p_vlc, "key-pressed", val ); var_Set( p_intf->p_vlc, "key-pressed", val );
} }
......
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