diff options
author | Oz Linden <oz@lindenlab.com> | 2014-08-04 14:45:39 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-08-04 14:45:39 -0400 |
commit | 41eb8eabc902788f9c9aece586555adcd43bde5b (patch) | |
tree | 3e1ab61b5d9a82b58ff4fc2d45acb0658760ec85 /indra/llui | |
parent | e5f6c2faa040c2a7c161d60226854c23ff831eb5 (diff) | |
parent | 1346949e4d601e8c945fa30593ba1d405e9ed80d (diff) |
merge changes for 3.7.13-release
Diffstat (limited to 'indra/llui')
-rwxr-xr-x | indra/llui/lltooltip.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/lltooltip.cpp b/indra/llui/lltooltip.cpp index 5e1f12996e..7f2224870d 100755 --- a/indra/llui/lltooltip.cpp +++ b/indra/llui/lltooltip.cpp @@ -477,7 +477,8 @@ void LLToolTipMgr::show(const std::string& msg) void LLToolTipMgr::show(const LLToolTip::Params& params) { if (!params.styled_message.isProvided() - && (!params.message.isProvided() || params.message().empty())) return; + && (!params.message.isProvided() || params.message().empty()) + && !params.image.isProvided()) return; // fill in default tooltip params from tool_tip.xml LLToolTip::Params params_with_defaults(params); |