瀏覽代碼

LibCore: Allow widgets to reparent

Torstennator 1 年之前
父節點
當前提交
38974b4128
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Userland/Libraries/LibCore/EventReceiver.h

+ 1 - 0
Userland/Libraries/LibCore/EventReceiver.h

@@ -134,6 +134,7 @@ public:
     {
         if (m_parent)
             m_parent->remove_child(*this);
+        m_parent = nullptr;
     }
 
     template<class T, class... Args>