summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorRichard Linden <none@none>2014-04-29 14:24:00 -0700
committerRichard Linden <none@none>2014-04-29 14:24:00 -0700
commit2834c7968de9efc81d3c7db8a9c2b5cd2f16d6a3 (patch)
tree1a8ab286a24705225c67cac90063917f4e638534 /indra/llui
parent05c5a27fd3cab8eac2a2e2a790cbf7b7b76d5fc7 (diff)
MAINT-3975 FIX Group Invitation window omits ? button for listed residents (INTEREST LIST RC only)
Diffstat (limited to 'indra/llui')
-rwxr-xr-xindra/llui/lltooltip.cpp3
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);