Commit 872fa427 authored by campaign's avatar campaign

修复shift+方向键问题

parent 52a10448
......@@ -215,8 +215,11 @@ Minder.Receiver = kity.createClass('Receiver', {
this.selection.currentEndOffset = 0;
}
}else if(keymap.up == keyCode){
this.selection.currentEndOffset = 0;
this.selection.baseOffset = this.selection.endOffset;
}else{
this.selection.currentEndOffset = textlength;
}
if(this.selection.currentEndOffset >= this.selection.baseOffset){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment