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
Родитель b6923671aa
Коммит fc6f4b74e8
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

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