From d0d7f70775f7509576597da4b1dabf69e4448fa9 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 23 Mar 2010 02:38:30 -0400 Subject: [PATCH] Fixed issue with the editbox's history not being updated when losing focus. --- Frame.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frame.lua b/Frame.lua index 2cb984c..81b80c8 100644 --- a/Frame.lua +++ b/Frame.lua @@ -1449,8 +1449,8 @@ MainPanel.search_editbox:SetScript("OnEditFocusLost", if text == "" then self:SetText(L["SEARCH_BOX_DESC"]) return - self:AddHistoryLine(text) end + self:AddHistoryLine(text) end) -- 1.7.9.5