From 66ee836c138e0f819082a90f41182d626669c5d0 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Sat, 3 Aug 2013 14:47:25 +0000 Subject: [PATCH] fix control_x handler in Ox.List --- source/Ox.UI/js/List/List.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/Ox.UI/js/List/List.js b/source/Ox.UI/js/List/List.js index e923edda..b7e7d92a 100644 --- a/source/Ox.UI/js/List/List.js +++ b/source/Ox.UI/js/List/List.js @@ -191,7 +191,9 @@ Ox.List = function(options, self) { addItem('shift'); }, key_control_v: pasteItems, - key_control_x: cutItems, + key_control_x: function() { + cutItems(); + }, key_control_shift_x: function() { cutItems(true); },