From 80b3c02164276d990a4f0052789abc8ddb536d80 Mon Sep 17 00:00:00 2001 From: j Date: Wed, 7 Mar 2018 13:18:21 +0530 Subject: [PATCH] forward paste event --- source/UI/js/Video/VideoEditPanel.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/UI/js/Video/VideoEditPanel.js b/source/UI/js/Video/VideoEditPanel.js index 2705368e..f7b0bbaa 100644 --- a/source/UI/js/Video/VideoEditPanel.js +++ b/source/UI/js/Video/VideoEditPanel.js @@ -172,6 +172,9 @@ Ox.VideoEditPanel = function(options, self) { out: self.options.out }]); }, + key_control_v: function() { + that.triggerEvent('paste'); + }, key_dot: function() { movePositionTo('cut', 1); }, @@ -275,6 +278,9 @@ Ox.VideoEditPanel = function(options, self) { loop: function(data) { that.triggerEvent('loop', data); }, + key_control_v: function() { + that.triggerEvent('paste'); + }, muted: function(data) { that.triggerEvent('muted', data); },