Commit b99274d3 authored by Yoann Peronneau's avatar Yoann Peronneau

* modules/control/hotkeys.c: don't display OSD slider if stream is not...

 * modules/control/hotkeys.c: don't display OSD slider if stream is not seekable, when pressing 't' hotkey. 
parent 28b32e91
......@@ -415,7 +415,7 @@ static void Run( intf_thread_t *p_intf )
vlc_value_t val; val.b_bool = VLC_TRUE;
var_Set( p_input, "rate-slower", val );
}
else if( i_action == ACTIONID_POSITION )
else if( i_action == ACTIONID_POSITION && b_seekable )
{
DisplayPosition( p_vout, p_input );
}
......
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