Skip to content
Snippets Groups Projects
Commit 2834c796 authored by Richard Linden's avatar Richard Linden
Browse files

MAINT-3975 FIX Group Invitation window omits ? button for listed residents (INTEREST LIST RC only)

parent 05c5a27f
No related branches found
No related tags found
No related merge requests found
...@@ -477,7 +477,8 @@ void LLToolTipMgr::show(const std::string& msg) ...@@ -477,7 +477,8 @@ void LLToolTipMgr::show(const std::string& msg)
void LLToolTipMgr::show(const LLToolTip::Params& params) void LLToolTipMgr::show(const LLToolTip::Params& params)
{ {
if (!params.styled_message.isProvided() 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 // fill in default tooltip params from tool_tip.xml
LLToolTip::Params params_with_defaults(params); LLToolTip::Params params_with_defaults(params);
......
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
Choose what Role to assign them to: Choose what Role to assign them to:
</text> </text>
<combo_box <combo_box
height="16" height="20"
layout="topleft" layout="topleft"
left_delta="0" left_delta="0"
name="role_name" name="role_name"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment