From 91a111686979292e648fd9b7963521b6a2ca665f Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Mon, 22 Mar 2010 18:08:04 -0400 Subject: [PATCH] In MainPanel.progress_bar:Update(): Set pbCur regardless of filter status - the same value is used in both cases. --- Frame.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Frame.lua b/Frame.lua index c6a160e..3244f54 100644 --- a/Frame.lua +++ b/Frame.lua @@ -2848,12 +2848,11 @@ function MainPanel.progress_bar:Update() local pbCur, pbMax local settings = addon.db.profile + pbCur = MainPanel.scroll_frame.recipes_displayed + if settings.includefiltered then - pbCur = MainPanel.scroll_frame.recipes_displayed pbMax = Player.recipes_total else - -- We're removing filtered recipes from the final count - pbCur = MainPanel.scroll_frame.recipes_displayed pbMax = Player.recipes_total_filtered end -- 1.7.9.5