diff options
author | dmitry <none@none> | 2013-08-02 18:00:08 +0300 |
---|---|---|
committer | dmitry <none@none> | 2013-08-02 18:00:08 +0300 |
commit | 48f702029f498b83c6a9ade54c3814def0df4bc8 (patch) | |
tree | 2f5c6273ab350dc8832c7090bbb6fad728aa9727 /indra/llui/llcommandmanager.cpp | |
parent | aec50ffdad0705e01e14a66b83683f8947c8e02a (diff) |
MAINT-2914 FIXED Mousing over UI elements does not make them light up
Diffstat (limited to 'indra/llui/llcommandmanager.cpp')
-rwxr-xr-x | indra/llui/llcommandmanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llcommandmanager.cpp b/indra/llui/llcommandmanager.cpp index 625fb8e870..ab37ee48b6 100755 --- a/indra/llui/llcommandmanager.cpp +++ b/indra/llui/llcommandmanager.cpp @@ -50,6 +50,7 @@ const LLCommandId LLCommandId::null = LLCommandId("null command"); LLCommand::Params::Params() : available_in_toybox("available_in_toybox", false) , icon("icon") + , hover_icon("hover_icon") , label_ref("label_ref") , name("name") , tooltip_ref("tooltip_ref") @@ -71,6 +72,7 @@ LLCommand::LLCommand(const LLCommand::Params& p) : mIdentifier(p.name) , mAvailableInToybox(p.available_in_toybox) , mIcon(p.icon) + , mHoverIcon(p.hover_icon) , mLabelRef(p.label_ref) , mName(p.name) , mTooltipRef(p.tooltip_ref) |