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 62e203515c
commit 4b70b0a398

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];