From e6b7f6e82c9a27be3e9f2855f72ebf8d47094450 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 22 Jun 2010 02:51:18 -0400 Subject: [PATCH] Standardized arguments to all calls of ListFrame:Update(). --- Frame.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Frame.lua b/Frame.lua index 753f2c8..3e6edd4 100644 --- a/Frame.lua +++ b/Frame.lua @@ -1622,7 +1622,7 @@ function SearchBox:Reset() self:SetText(_G.SEARCH) self:ClearFocus() - ListFrame:Update(false, false) + ListFrame:Update(nil, false) end -- If there is text in the search box, return the recipe's RELEVANT state. @@ -1654,7 +1654,7 @@ SearchBox:SetScript("OnEnterPressed", self:HighlightText() self:AddHistoryLine(searchtext) SearchRecipes(searchtext) - ListFrame:Update(false, false) + ListFrame:Update(nil, false) end) SearchBox:SetScript("OnEditFocusGained", @@ -1700,7 +1700,7 @@ do last_update = 0 SearchRecipes(SearchBox:GetText()) - ListFrame:Update(false, false) + ListFrame:Update(nil, false) self:Hide() end end) -- 1.7.9.5