From e99b7e257d57a9e949006d5d8ab479b004852fa9 Mon Sep 17 00:00:00 2001 From: Nimetu Date: Thu, 12 Mar 2020 18:27:40 +0200 Subject: [PATCH] Fixed: Icon text must be in lowercase for bitmap icons --- code/ryzom/client/src/interface_v3/dbctrl_sheet.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/code/ryzom/client/src/interface_v3/dbctrl_sheet.cpp b/code/ryzom/client/src/interface_v3/dbctrl_sheet.cpp index d6b521672..531987f74 100644 --- a/code/ryzom/client/src/interface_v3/dbctrl_sheet.cpp +++ b/code/ryzom/client/src/interface_v3/dbctrl_sheet.cpp @@ -1901,6 +1901,7 @@ void CDBCtrlSheet::setupCharBitmaps(sint32 maxW, sint32 maxLine, bool topDown) text = CI18N::get(text).toUtf8(); } } + text = toLower(text); CViewRenderer &rVR = *CViewRenderer::getInstance();