From be71f9cc154f684b9187d9d3336a89481073e8bc Mon Sep 17 00:00:00 2001 From: Ansariel Date: Fri, 18 Apr 2014 23:16:15 +0200 Subject: [PATCH] FIRE-13501: Activate "Members" sub-tab on "Members & Roles" tab in group profile by default --- indra/newview/llpanelgrouproles.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/indra/newview/llpanelgrouproles.cpp b/indra/newview/llpanelgrouproles.cpp index c981bc9a9e..0bf0da9d87 100755 --- a/indra/newview/llpanelgrouproles.cpp +++ b/indra/newview/llpanelgrouproles.cpp @@ -2761,7 +2761,10 @@ void LLPanelGroupRoles::setGroupID(const LLUUID& id) // [/FS:CR] if(mSubTabContainer) - mSubTabContainer->selectTab(1); + // FIRE-13501: Activate "Members" tab by default + //mSubTabContainer->selectTab(1); + mSubTabContainer->selectTab(0); + // activate(); }