diff options
| author | James Cook <james@lindenlab.com> | 2009-11-11 17:44:15 -0800 | 
|---|---|---|
| committer | James Cook <james@lindenlab.com> | 2009-11-11 17:44:15 -0800 | 
| commit | 14fb8d400edf0ea71290195b6bf41b7d580157af (patch) | |
| tree | 319c97e7ad68931c2d5f80c77f54835805b87ec4 | |
| parent | 816133718eb4e274bfa20ac86dba34faf59155b1 (diff) | |
EXT-2368 Group inspector now shows no Join/Leave buttons until data is fetched
| -rw-r--r-- | indra/newview/llinspectgroup.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/inspect_group.xml | 2 | 
2 files changed, 3 insertions, 2 deletions
| diff --git a/indra/newview/llinspectgroup.cpp b/indra/newview/llinspectgroup.cpp index c78bcd6afe..7fd7b69021 100644 --- a/indra/newview/llinspectgroup.cpp +++ b/indra/newview/llinspectgroup.cpp @@ -216,7 +216,8 @@ void LLInspectGroup::requestUpdate()  	getChild<LLUICtrl>("group_details")->setValue("");  	getChild<LLUICtrl>("group_cost")->setValue("");  	// Must have a visible button so the inspector can take focus -	getChild<LLUICtrl>("leave_btn")->setVisible(true); +	getChild<LLUICtrl>("view_profile_btn")->setVisible(true); +	getChild<LLUICtrl>("leave_btn")->setVisible(false);  	getChild<LLUICtrl>("join_btn")->setVisible(false);  	// Make a new request for properties diff --git a/indra/newview/skins/default/xui/en/inspect_group.xml b/indra/newview/skins/default/xui/en/inspect_group.xml index e5e5007c56..f48af2f97e 100644 --- a/indra/newview/skins/default/xui/en/inspect_group.xml +++ b/indra/newview/skins/default/xui/en/inspect_group.xml @@ -31,7 +31,7 @@       use_ellipses="true"       width="240"       word_wrap="false"> -    Grumpity's Grumpy Group of Moose +    Grumpity's Grumpy Group of Moose    </text>    <text     follows="all" | 
