From 96a03d1cf5a4a062af4551b010af1bca24f6f549 Mon Sep 17 00:00:00 2001 From: Nimetu Date: Thu, 12 Mar 2020 18:17:33 +0200 Subject: [PATCH] Changed: Preserve icon text case as is --- ryzom/client/src/client_sheets/item_sheet.cpp | 1 - ryzom/client/src/client_sheets/outpost_building_sheet.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/ryzom/client/src/client_sheets/item_sheet.cpp b/ryzom/client/src/client_sheets/item_sheet.cpp index 5918ba73c..d5831167c 100644 --- a/ryzom/client/src/client_sheets/item_sheet.cpp +++ b/ryzom/client/src/client_sheets/item_sheet.cpp @@ -274,7 +274,6 @@ void CItemSheet::build(const NLGEORGES::UFormElm &item) string IconText; if(!item.getValueByName (IconText, "3d.text overlay")) debug("key '3d.text overlay' not found."); - IconText = toLowerAscii(IconText); IdIconText = ClientSheetsStrings.add(IconText); // See if this item can be hiden when equipped diff --git a/ryzom/client/src/client_sheets/outpost_building_sheet.cpp b/ryzom/client/src/client_sheets/outpost_building_sheet.cpp index 42083c83f..0f741c1a2 100644 --- a/ryzom/client/src/client_sheets/outpost_building_sheet.cpp +++ b/ryzom/client/src/client_sheets/outpost_building_sheet.cpp @@ -131,7 +131,6 @@ void COutpostBuildingSheet::build(const NLGEORGES::UFormElm &root) string IconText; if(!root.getValueByName (IconText, "text overlay")) debug("key 'text overlay' not found."); - IconText = toLowerAscii(IconText); IdIconText = ClientSheetsStrings.add(IconText); }