From 15ca46cf8f20d845b509ed2a1c447a37f90a0d1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Fri, 9 Apr 2010 18:23:38 +0200 Subject: [PATCH] lua_rc: fix pause (use the right function as it exist now). --- share/lua/intf/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/lua/intf/rc.lua b/share/lua/intf/rc.lua index 7612c22b37..0eac503f19 100644 --- a/share/lua/intf/rc.lua +++ b/share/lua/intf/rc.lua @@ -509,7 +509,7 @@ commands_ordered = { { "chapter_p"; { func = titlechap_offset(-1); help = "previous chapter in current item" } }; { "" }; { "seek"; { func = seek; args = "X"; help = "seek in seconds, for instance `seek 12'" } }; - { "pause"; { func = setarg(common.hotkey,"key-play-pause"); help = "toggle pause" } }; + { "pause"; { func = skip2(vlc.playlist.pause); help = "toggle pause" } }; { "fastforward"; { func = setarg(common.hotkey,"key-jump+extrashort"); help = "set to maximum rate" } }; { "rewind"; { func = setarg(common.hotkey,"key-jump-extrashort"); help = "set to minimum rate" } }; { "faster"; { func = rate; help = "faster playing of stream" } }; -- 2.11.4.GIT