ingame/housetours/keyboard/housetours_searchresults_keyboard.lua:53 -- self.nameSearchBox:SetHandler("OnFocusLost", function(editControl)
local filters = HOUSE_TOURS_SEARCH_MANAGER:GetSearchFilters(self.listingType)
local newValue = self.nameSearchBox:GetText()
local oldValue = filters:GetDisplayName()
--Only run a new search if the value actually changed
if newValue ~= oldValue then
filters:SetDisplayName(newValue)
HOUSE_TOURS_SEARCH_MANAGER:ExecuteSearch(self.listingType)
end
end)