Fix minor bug that made shift+tab on a final, blank tab jump back two indices instead of one

This commit is contained in:
Will S 2011-12-15 19:36:43 -05:00
parent 86fa29bf14
commit e10d049428

View file

@ -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>