зеркало из https://github.com/mozilla/gecko-dev.git
don't override single tab when pref is 'append'
This commit is contained in:
Родитель
32dcd895ba
Коммит
189bf81467
|
@ -573,12 +573,12 @@ var BookmarksCommand = {
|
|||
if (doReplace)
|
||||
index0 = 0;
|
||||
else {
|
||||
for (index0=tabCount-1; index0>0; --index0)
|
||||
if (browser.browsers[index0].webNavigation.currentURI.spec != "about:blank") {
|
||||
++index0;
|
||||
for (index0=tabCount-1; index0>=0; --index0)
|
||||
if (browser.browsers[index0].webNavigation.currentURI.spec != "about:blank")
|
||||
break;
|
||||
}
|
||||
++index0;
|
||||
}
|
||||
|
||||
var index = index0;
|
||||
while (containerChildren.hasMoreElements()) {
|
||||
var res = containerChildren.getNext().QueryInterface(kRDFRSCIID);
|
||||
|
|
Загрузка…
Ссылка в новой задаче