Bug 350201, Location bar shows about:blank after toolbar customization, r=mano

git-svn-id: svn://10.0.0.236/trunk@208831 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
flamingice%sourmilk.net 2006-08-30 19:43:18 +00:00
parent 9484a91047
commit 207260e616

View File

@ -3382,7 +3382,7 @@ function BrowserToolboxCustomizeDone(aToolboxChanged)
// Update the urlbar
var url = getWebNavigation().currentURI.spec;
if (gURLBar) {
gURLBar.value = url;
gURLBar.value = url == "about:blank" ? "" : url;
SetPageProxyState("valid");
XULBrowserWindow.asyncUpdateUI();
}