FIX crash while deleting a selected tree node

This commit is contained in:
qPCR4vir 2018-11-07 16:09:49 +01:00
parent 840d6b775d
commit e4a829d6f8

View File

@ -63,7 +63,7 @@ namespace detail
{
while (child)
{
if (child->owner == this)
if (child == this)
return true;
child = child->owner;