From 42d95833197b43f19db803092d0b63fb340bae2b Mon Sep 17 00:00:00 2001 From: Tigran Aivazian Date: Sat, 15 Sep 2012 21:32:00 +0100 Subject: [PATCH] In the Search Results show the actual pattern entered, not the uppercased version thereof. --- filesearcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesearcher.lua b/filesearcher.lua index 85840ed45..0c114e95d 100644 --- a/filesearcher.lua +++ b/filesearcher.lua @@ -275,7 +275,7 @@ function FileSearcher:choose(keywords) fb.bb:paintRect(0, 0, G_width, G_height, 0) -- draw menu title - DrawTitle("Search Results for \'"..string.upper(self.keywords).."\'".." ("..tostring(self.items).." hits)",self.margin_H,0,self.title_H,3,tface) + DrawTitle("Search Results for \'"..self.keywords.."\'".." ("..tostring(self.items).." hits)",self.margin_H,0,self.title_H,3,tface) -- draw results local c if self.items == 0 then -- nothing found