mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-11 23:24:43 +02:00
Allow tab to process as 'next' in preview mode
This commit is contained in:
parent
ac35d3506d
commit
c715bb7731
1 changed files with 6 additions and 1 deletions
|
@ -1023,7 +1023,12 @@ MultiLineEditTextView.prototype.getData = function() {
|
|||
|
||||
MultiLineEditTextView.prototype.setPropertyValue = function(propName, value) {
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue