From efaaccc0306de2362a29c3b68db3f8f5b0c92cfc Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 7 Jan 2016 12:58:36 -0600 Subject: [PATCH] Added $ check for language support for drawing Option Values --- src/menu/optionmenuitems.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/menu/optionmenuitems.h b/src/menu/optionmenuitems.h index 3054847c1..0b0b57759 100644 --- a/src/menu/optionmenuitems.h +++ b/src/menu/optionmenuitems.h @@ -200,6 +200,7 @@ public: { text = (*opt)->mValues[Selection].Text; } + if (*text == '$') text = GStrings(text + 1); screen->DrawText (SmallFont, OptionSettings.mFontColorValue, indent + CURSORSPACE, y, text, DTA_CleanNoMove_1, true, DTA_ColorOverlay, overlay, TAG_DONE); return indent;