Bug 958674 - Invalidate the popup content view when showing the popup. r=smichaud

This commit is contained in:
Markus Stange 2014-01-28 00:04:41 +01:00
parent b6923671aa
commit fc6f4b74e8

View File

@ -903,8 +903,10 @@ NS_IMETHODIMP nsCocoaWindow::Show(bool bState)
}
}
if (mPopupContentView)
mPopupContentView->Show(bState);
if (mPopupContentView) {
mPopupContentView->Show(bState);
[[mWindow contentView] setNeedsDisplay:YES];
}
[mWindow setBeingShown:NO];