From 7769f0bfae4b70b817745e336f8609c352e2a0b2 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sat, 19 Jun 2010 22:53:50 -0400 Subject: [PATCH] Fixed issue with collapsing the panel. Fixes ticket #1015. --- Frame.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frame.lua b/Frame.lua index b3b8309..493ffac 100644 --- a/Frame.lua +++ b/Frame.lua @@ -1920,7 +1920,7 @@ do -- Hide the category buttons for category in pairs(MainPanel.filter_menu) do - if category ~= 0 and category ~= "texture" then + if VALID_CATEGORY[category] then MainPanel["menu_toggle_" .. category]:Hide() end end -- 1.7.9.5