File tree 1 file changed +2
-2
lines changed
src/Avalonia.Visuals/Rendering
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -279,13 +279,13 @@ void IRenderLoopTask.Render()
279
279
/// <inheritdoc/>
280
280
Size IVisualBrushRenderer . GetRenderTargetSize ( IVisualBrush brush )
281
281
{
282
- return ( _currentDraw . Item as BrushDrawOperation ) ? . ChildScenes ? [ brush . Visual ] ? . Size ?? Size . Empty ;
282
+ return ( _currentDraw ? . Item as BrushDrawOperation ) ? . ChildScenes ? [ brush . Visual ] ? . Size ?? Size . Empty ;
283
283
}
284
284
285
285
/// <inheritdoc/>
286
286
void IVisualBrushRenderer . RenderVisualBrush ( IDrawingContextImpl context , IVisualBrush brush )
287
287
{
288
- var childScene = ( _currentDraw . Item as BrushDrawOperation ) ? . ChildScenes ? [ brush . Visual ] ;
288
+ var childScene = ( _currentDraw ? . Item as BrushDrawOperation ) ? . ChildScenes ? [ brush . Visual ] ;
289
289
290
290
if ( childScene != null )
291
291
{
You can’t perform that action at this time.
0 commit comments