Bug 309860 - Dragging a url to the tabstrip ignores the shift key. r=mconnor.

This commit is contained in:
mozilla.mano%sent.com 2007-08-22 05:03:57 +00:00
Родитель 53a7c8db96
Коммит b688be336f
1 изменённых файлов: 10 добавлений и 1 удалений

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

@ -1524,7 +1524,16 @@
if (aEvent.originalTarget.localName != "tab") {
// We're adding a new tab.
this.loadOneTab(getShortcutOrURI(url));
var bgLoad = true;
try {
bgLoad = this.mPrefs.getBoolPref("browser.tabs.loadInBackground");
}
catch (e) { }
if (aEvent.shiftKey)
bgLoad = !bgLoad;
this.loadOneTab(getShortcutOrURI(url), null, null, null, bgLoad);
}
else {
// Load in an existing tab.