From 334654027648f83b909f500457b48cb4a2d51450 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Fri, 2 Apr 2010 00:10:51 -0400 Subject: [PATCH] In the OnHide script for the MainPanel: Remove the VISIBLE and RELEVANT flags from all recipes. --- Frame.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Frame.lua b/Frame.lua index d6f88e9..e0e82d2 100644 --- a/Frame.lua +++ b/Frame.lua @@ -941,6 +941,10 @@ MainPanel.title_bar:SetJustifyH("CENTER") ------------------------------------------------------------------------------- MainPanel:SetScript("OnHide", function(self) + for spell_id, recipe in pairs(private.recipe_list) do + recipe:RemoveState("RELEVANT") + recipe:RemoveState("VISIBLE") + end addon:ClosePopups() end) -- 1.7.9.5