diff options
author | andreykproductengine <akleshchev@productengine.com> | 2014-09-11 18:50:26 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2014-09-11 18:50:26 +0300 |
commit | 71baa9cdf4d74a7ab1d194b4f823416f5f450c39 (patch) | |
tree | 379bfe25028eca0bdeaeaeaec0d171fc0a95e391 | |
parent | 61fb8c3fe31c73ce9121daac545aa7c8fc79ec8c (diff) |
MAINT-4440 FIXED Bad colors for spillover menu in viewer-lion
-rwxr-xr-x | indra/llui/llmenugl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index d3ed4a1286..3e6002e546 100755 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -2369,7 +2369,9 @@ void LLMenuGL::createSpilloverBranch() branch_params.label = label; branch_params.branch = mSpilloverMenu; branch_params.font.style = "italic"; - + branch_params.highlight_bg_color=LLUIColorTable::instance().getColor("MenuItemHighlightBgColor"); + branch_params.highlight_fg_color=LLUIColorTable::instance().getColor("MenuItemHighlightFgColor"); + branch_params.enabled_color=LLUIColorTable::instance().getColor("MenuItemEnabledColor"); mSpilloverBranch = LLUICtrlFactory::create<LLMenuItemBranchGL>(branch_params); } |