Fix minor bug that made shift+tab on a final, blank tab jump back two indices instead of one
This commit is contained in:
parent
86fa29bf14
commit
e10d049428
1 changed files with 2 additions and 2 deletions
|
@ -467,7 +467,7 @@
|
|||
else {
|
||||
id = tagsbox.add(value);
|
||||
}
|
||||
if (!id) {
|
||||
if (!id && (this._tabDirection==1)) {
|
||||
this._lastTabIndex--;
|
||||
}
|
||||
}
|
||||
|
@ -752,4 +752,4 @@
|
|||
</xul:scrollbox>
|
||||
</content>
|
||||
</binding>
|
||||
</bindings>
|
||||
</bindings>
|
Loading…
Reference in a new issue