Bug 1579709 Fix ctrl-tab with only one tab r=bgrins

Differential Revision: https://phabricator.services.mozilla.com/D48451

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew Swan 2019-10-07 22:28:11 +00:00
parent bc25402915
commit ffed33b20b

View File

@ -779,7 +779,9 @@
direction: aDir,
wrap: aWrap,
});
this._selectNewTab(newTab, aDir, aWrap);
if (newTab && newTab != startTab) {
this._selectNewTab(newTab, aDir, aWrap);
}
}
appendItem(label, value) {