Derek Antrican
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
src/Avalonia.Controls/NativeControlHost.cs
|
|
|
@ -192,7 +192,10 @@ namespace Avalonia.Controls |
|
|
|
|
|
|
|
protected virtual void DestroyNativeControlCore(IPlatformHandle control) |
|
|
|
{ |
|
|
|
((INativeControlHostDestroyableControlHandle)control).Destroy(); |
|
|
|
if (control is INativeControlHostDestroyableControlHandle nativeControlHostDestroyableControlHandle) |
|
|
|
{ |
|
|
|
nativeControlHostDestroyableControlHandle.Destroy(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|