summaryrefslogtreecommitdiff
path: root/indra/llui/llcommandmanager.h
diff options
context:
space:
mode:
authordmitry <none@none>2013-08-02 18:00:08 +0300
committerdmitry <none@none>2013-08-02 18:00:08 +0300
commit48f702029f498b83c6a9ade54c3814def0df4bc8 (patch)
tree2f5c6273ab350dc8832c7090bbb6fad728aa9727 /indra/llui/llcommandmanager.h
parentaec50ffdad0705e01e14a66b83683f8947c8e02a (diff)
MAINT-2914 FIXED Mousing over UI elements does not make them light up
Diffstat (limited to 'indra/llui/llcommandmanager.h')
-rwxr-xr-xindra/llui/llcommandmanager.h4
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;