diff --git a/xpfe/AppCores/src/nsBrowserAppCore.cpp b/xpfe/AppCores/src/nsBrowserAppCore.cpp index 2aab443579f7..924bb7174dd6 100644 --- a/xpfe/AppCores/src/nsBrowserAppCore.cpp +++ b/xpfe/AppCores/src/nsBrowserAppCore.cpp @@ -1063,7 +1063,10 @@ nsBrowserAppCore::OnStartDocumentLoad(nsIDocumentLoader* aLoader, nsIURI* aURL, setAttribute( mWebShell, "Browser:Throbber", "busy", "true" ); // Enable the Stop buton - setAttribute( mWebShell, "canStop", "disabled", "false" ); + setAttribute( mWebShell, "canStop", "disabled", "" ); + + //Disable the reload button + setAttribute(mWebShell, "canReload", "disabled", "true"); return NS_OK; }