]> git.sesse.net Git - vlc/commitdiff
Qt4: forward and back were using key-pressed where they should be using key-action...
authorDerk-Jan Hartman <hartman@videolan.org>
Fri, 5 Jun 2009 20:03:39 +0000 (22:03 +0200)
committerDerk-Jan Hartman <hartman@videolan.org>
Fri, 5 Jun 2009 20:03:39 +0000 (22:03 +0200)
modules/gui/qt4/actions_manager.cpp

index 9a77bb654f7803d315c1611ad805135fa543bedd..ed5cd71cd8eafde3c6e5dd24f520fe871d073aae 100644 (file)
@@ -80,11 +80,11 @@ void ActionsManager::doAction( int id_action )
         case REVERSE_ACTION:
             THEMIM->getIM()->reverse(); break;
         case SKIP_BACK_ACTION:
-            var_SetInteger( p_intf->p_libvlc, "key-pressed",
+            var_SetInteger( p_intf->p_libvlc, "key-action",
                     ACTIONID_JUMP_BACKWARD_SHORT );
             break;
         case SKIP_FW_ACTION:
-            var_SetInteger( p_intf->p_libvlc, "key-pressed",
+            var_SetInteger( p_intf->p_libvlc, "key-action",
                     ACTIONID_JUMP_FORWARD_SHORT );
             break;
         case QUIT_ACTION: