Only null out the nsimage when disposing is true

This commit is contained in:
Marshall Lerner 2023-03-13 14:47:01 -04:00
Родитель 43c8261d79
Коммит 9675cf2ecb
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -70,7 +70,9 @@ namespace Xwt.Mac
protected override void Dispose (bool disposing)
{
nsImage = null;
if (disposing)
nsImage = null;
base.Dispose(disposing);
}
}