From 74d3214f74612ca3237742f45af91d1c3851f5f4 Mon Sep 17 00:00:00 2001 From: Jeffrey Date: Wed, 9 Jan 2013 20:32:04 -0600 Subject: [PATCH] Fix Ignore Module warning Ignore list label was destroyed when removed, giving a warning when closing the Ignore Window. --- modules/game_console/console.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/game_console/console.lua b/modules/game_console/console.lua index 147c386e..1a75c26c 100644 --- a/modules/game_console/console.lua +++ b/modules/game_console/console.lua @@ -789,6 +789,7 @@ function onClickIgnoreButton() local selection = ignoreListPanel:getFocusedChild() if selection then ignoreListPanel:removeChild(selection) + selection:destroy() end if ignoreListPanel:getChildCount() == 0 then removeButton:disable()