From 71c9463d97e184085f900920bb94920db437eef3 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sun, 11 Jul 2010 01:56:26 -0400 Subject: [PATCH] When the SearchBox loses focus, ensure that the highlight is removed. --- Frame.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Frame.lua b/Frame.lua index f465b62..3e00705 100644 --- a/Frame.lua +++ b/Frame.lua @@ -624,6 +624,10 @@ SearchBox:SetScript("OnEditFocusLost", self:Reset() return end + + -- Ensure that the highlight is cleared. + self:SetText(text) + self:AddHistoryLine(text) end) -- 1.7.9.5