diff options
author | Richard Linden <none@none> | 2014-04-29 14:24:00 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2014-04-29 14:24:00 -0700 |
commit | 2834c7968de9efc81d3c7db8a9c2b5cd2f16d6a3 (patch) | |
tree | 1a8ab286a24705225c67cac90063917f4e638534 /indra/llui | |
parent | 05c5a27fd3cab8eac2a2e2a790cbf7b7b76d5fc7 (diff) |
MAINT-3975 FIX Group Invitation window omits ? button for listed residents (INTEREST LIST RC only)
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); |