diff options
| author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-04-07 19:04:01 +0300 | 
|---|---|---|
| committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-04-07 19:04:01 +0300 | 
| commit | b2c9f172d34a3c87f59efcbc6223892ee0bfa41f (patch) | |
| tree | 3efea252ff13e8da3815ae817956f3f23f446479 /indra | |
| parent | 7e32ccd8d42fe74103bbc7b308fbb510bd5f7d87 (diff) | |
Fixed normal bug EXT-6712(SLapp: nothing happens after click on 'secondlife:///app/group/list/show' link from Nearby chat) - added showing my groups tab in people panel.
Reviewed by Vadim Savchuk, https://codereview.productengine.com/secondlife/r/196/
--HG--
branch : product-engine
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llgroupactions.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/indra/newview/llgroupactions.cpp b/indra/newview/llgroupactions.cpp index d4eecc8c48..438159b2e6 100644 --- a/indra/newview/llgroupactions.cpp +++ b/indra/newview/llgroupactions.cpp @@ -75,12 +75,13 @@ public:  			return false;  		} -		//*TODO by what to replace showing groups floater?  		if (tokens[0].asString() == "list")  		{  			if (tokens[1].asString() == "show")  			{ -				//LLFloaterReg::showInstance("contacts", "groups"); +				LLSD params; +				params["people_panel_tab_name"] = "groups_panel"; +				LLSideTray::getInstance()->showPanel("panel_people", params);  				return true;  			}              return false; | 
