From 44b81c45cc2f993a6f7e2b2ea9308c3b6f549a06 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Mon, 22 Mar 2010 12:42:20 -0400 Subject: [PATCH] In MainPanel.progress_bar:Update(): Ignore Player.recipes_known and Player.recipes_known_filtered - use MainPanel.scroll_frame.recipes_displayed instead. --- Frame.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frame.lua b/Frame.lua index 6b02f11..2173088 100644 --- a/Frame.lua +++ b/Frame.lua @@ -2839,11 +2839,11 @@ function MainPanel.progress_bar:Update() local settings = addon.db.profile if settings.includefiltered then - pbCur = Player.recipes_known + pbCur = MainPanel.scroll_frame.recipes_displayed pbMax = Player.recipes_total else -- We're removing filtered recipes from the final count - pbCur = Player.recipes_known_filtered + pbCur = MainPanel.scroll_frame.recipes_displayed pbMax = Player.recipes_total_filtered end -- 1.7.9.5