From b0e0bbda9b4f4bd1723650a181da589a8a4a548d Mon Sep 17 00:00:00 2001 From: Casey Link Date: Fri, 5 Dec 2014 16:52:57 +0100 Subject: [PATCH] stockpiles: show proper cased names in filter list --- plugins/lua/stockpiles.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/lua/stockpiles.lua b/plugins/lua/stockpiles.lua index 72bd6a057..8b318eb0f 100644 --- a/plugins/lua/stockpiles.lua +++ b/plugins/lua/stockpiles.lua @@ -46,7 +46,7 @@ function ListFilterDialog(args) local name = v local icon table.insert(choices, { - icon = icon, text = string.lower(name), index = i + icon = icon, search_key = string.lower(name), text = name, index = i }) end end