From bf293a0a0ad448458e291021477545690cee0c88 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 30 Mar 2010 15:47:47 -0400 Subject: [PATCH] In ListFrame:Initialize(): If profile.includefiltered is false, use Player.recipes_known_filtered instead of Player.recipes_known. --- Frame.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frame.lua b/Frame.lua index 225c69e..d8df42f 100644 --- a/Frame.lua +++ b/Frame.lua @@ -2867,7 +2867,7 @@ do local profile = addon.db.profile local max_value = profile.includefiltered and Player.recipes_total or Player.recipes_total_filtered - local cur_value = Player.recipes_known + local cur_value = profile.includefiltered and Player.recipes_known or Player.recipes_known_filtered local progress_bar = MainPanel.progress_bar if not profile.includeexcluded and not profile.ignoreexclusionlist then -- 1.7.9.5