Allow tab to process as 'next' in preview mode
This commit is contained in:
parent
ac35d3506d
commit
c715bb7731
|
@ -1023,7 +1023,12 @@ MultiLineEditTextView.prototype.getData = function() {
|
||||||
|
|
||||||
MultiLineEditTextView.prototype.setPropertyValue = function(propName, value) {
|
MultiLineEditTextView.prototype.setPropertyValue = function(propName, value) {
|
||||||
switch(propName) {
|
switch(propName) {
|
||||||
case 'mode' : this.mode = value; break;
|
case 'mode' :
|
||||||
|
this.mode = value;
|
||||||
|
if('preview' === value && !this.specialKeyMap.next) {
|
||||||
|
this.specialKeyMap.next = [ 'tab' ];
|
||||||
|
}
|
||||||
|
break;
|
||||||
case 'autoScroll' : this.autoScroll = value; break;
|
case 'autoScroll' : this.autoScroll = value; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue