Commit 89db25d2 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

Qt4: forward and back were using key-pressed where they should be using key-action variable

parent 9f396531
...@@ -80,11 +80,11 @@ void ActionsManager::doAction( int id_action ) ...@@ -80,11 +80,11 @@ void ActionsManager::doAction( int id_action )
case REVERSE_ACTION: case REVERSE_ACTION:
THEMIM->getIM()->reverse(); break; THEMIM->getIM()->reverse(); break;
case SKIP_BACK_ACTION: case SKIP_BACK_ACTION:
var_SetInteger( p_intf->p_libvlc, "key-pressed", var_SetInteger( p_intf->p_libvlc, "key-action",
ACTIONID_JUMP_BACKWARD_SHORT ); ACTIONID_JUMP_BACKWARD_SHORT );
break; break;
case SKIP_FW_ACTION: case SKIP_FW_ACTION:
var_SetInteger( p_intf->p_libvlc, "key-pressed", var_SetInteger( p_intf->p_libvlc, "key-action",
ACTIONID_JUMP_FORWARD_SHORT ); ACTIONID_JUMP_FORWARD_SHORT );
break; break;
case QUIT_ACTION: case QUIT_ACTION:
......
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