fix control_x handler in Ox.List
This commit is contained in:
parent
31d54403fb
commit
66ee836c13
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue