reverted line in SetVisibleByFlag; an odd casualty of the brace and indentation uglification that comprised most of rev 1.6. bug 54235 r=jst,waterson

git-svn-id: svn://10.0.0.236/branches/Netscape_20000922_BRANCH@80534 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
danm%netscape.com
2000-10-06 00:47:36 +00:00
parent f7e6a212ab
commit a11227c847

View File

@@ -106,7 +106,7 @@ NS_IMETHODIMP BarPropImpl::SetVisibleByFlag(PRBool aVisible,
if(aVisible)
chromeFlags |= aChromeFlag;
else
chromeFlags |= ~aChromeFlag;
chromeFlags &= ~aChromeFlag;
NS_ENSURE_SUCCESS(mBrowserChrome->SetChromeFlags(chromeFlags),
NS_ERROR_FAILURE);
return NS_OK;