Bug 385837: No window gets the focus when loading a URL from an external application. r=gavin.sharp, a=blocking-firefox3 M9

This commit is contained in:
dtownsend@oxymoronical.com 2007-10-19 07:31:45 -07:00
Родитель dda8b3a65f
Коммит 3e2e608a8b
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -3975,6 +3975,8 @@ nsBrowserAccess.prototype =
newWindow.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.loadURI(url, loadflags, referrer, null, null);
if (!loadInBackground && isExternal)
newWindow.focus();
} catch(e) {
}
break;