diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-15 12:41:51 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-15 12:41:51 -0800 |
commit | 7efc0fbb4fd912d59a38a4d5653f1dc12c3876b1 (patch) | |
tree | 923e66694f0dd15459714458e2cf3dcb72d75ac4 /indra | |
parent | 0e62cc934caf205d416ab5cd633522958a96e056 (diff) |
EXT-4383 Replace ">" glyph in cascading menus with a proper triangle
patch by josh, reviewed by me
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/llmenugl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index 21f3f15739..c172a2b714 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -99,7 +99,7 @@ const S32 TEAROFF_SEPARATOR_HEIGHT_PIXELS = 10; const S32 MENU_ITEM_PADDING = 4; const std::string BOOLEAN_TRUE_PREFIX( "\xE2\x9C\x94" ); // U+2714 HEAVY CHECK MARK -const std::string BRANCH_SUFFIX( ">" ); +const std::string BRANCH_SUFFIX( "\xE2\x96\xB6" ); // U+25B6 BLACK RIGHT-POINTING TRIANGLE const std::string ARROW_UP ("^^^^^^^"); const std::string ARROW_DOWN("vvvvvvv"); |