invisible views are not allowed to draw
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15808 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
82b37bb257
commit
7324b0ceb8
@ -871,6 +871,10 @@ void
|
||||
ViewLayer::Draw(DrawingEngine* drawingEngine, BRegion* effectiveClipping,
|
||||
BRegion* windowContentClipping, bool deep)
|
||||
{
|
||||
if (!fVisible)
|
||||
return;
|
||||
// child views can not be visible either
|
||||
|
||||
if (fViewBitmap != NULL || !fViewColor.IsTransparentMagic()) {
|
||||
// we can only draw within our own area
|
||||
BRegion redraw(ScreenClipping(windowContentClipping));
|
||||
|
Loading…
Reference in New Issue
Block a user