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.h | |
parent | aec50ffdad0705e01e14a66b83683f8947c8e02a (diff) |
MAINT-2914 FIXED Mousing over UI elements does not make them light up
Diffstat (limited to 'indra/llui/llcommandmanager.h')
-rwxr-xr-x | indra/llui/llcommandmanager.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llui/llcommandmanager.h b/indra/llui/llcommandmanager.h index ff5a8a3257..47a9b86785 100755 --- a/indra/llui/llcommandmanager.h +++ b/indra/llui/llcommandmanager.h @@ -96,6 +96,8 @@ public: Mandatory<std::string> name; Mandatory<std::string> tooltip_ref; + Optional<std::string> hover_icon; + Mandatory<std::string> execute_function; Optional<LLSD> execute_parameters; @@ -124,6 +126,7 @@ public: const std::string& labelRef() const { return mLabelRef; } const std::string& name() const { return mName; } const std::string& tooltipRef() const { return mTooltipRef; } + const std::string& hoverIcon() const {return mHoverIcon; } const std::string& executeFunctionName() const { return mExecuteFunction; } const LLSD& executeParameters() const { return mExecuteParameters; } @@ -150,6 +153,7 @@ private: std::string mLabelRef; std::string mName; std::string mTooltipRef; + std::string mHoverIcon; std::string mExecuteFunction; LLSD mExecuteParameters; |