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 {
|
else {
|
||||||
id = tagsbox.add(value);
|
id = tagsbox.add(value);
|
||||||
}
|
}
|
||||||
if (!id) {
|
if (!id && (this._tabDirection==1)) {
|
||||||
this._lastTabIndex--;
|
this._lastTabIndex--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -752,4 +752,4 @@
|
||||||
</xul:scrollbox>
|
</xul:scrollbox>
|
||||||
</content>
|
</content>
|
||||||
</binding>
|
</binding>
|
||||||
</bindings>
|
</bindings>
|
Loading…
Add table
Add a link
Reference in a new issue