diff options
author | Oz Linden <oz@lindenlab.com> | 2011-05-25 13:55:58 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-05-25 13:55:58 -0400 |
commit | 8690fa472bdece537be0392517633bc48b4aa903 (patch) | |
tree | 20947d7538100c888278033803e3e88f7b50e9d3 | |
parent | 32e990618e8137e7dd5fc307fe533095709e4c9c (diff) |
storm-1282: reorder tabs on the region/estate floater
-rw-r--r-- | indra/newview/llfloaterregioninfo.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index f789a761eb..7c26b3e29d 100644 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -212,9 +212,14 @@ BOOL LLFloaterRegionInfo::postBuild() panel->buildFromFile("panel_region_general.xml"); mTab->addTabPanel(LLTabContainer::TabPanelParams().panel(panel).select_tab(true)); - panel = new LLPanelRegionDebugInfo; + panel = new LLPanelEstateInfo; mInfoPanels.push_back(panel); - panel->buildFromFile("panel_region_debug.xml"); + panel->buildFromFile("panel_region_estate.xml"); + mTab->addTabPanel(panel); + + panel = new LLPanelEstateCovenant; + mInfoPanels.push_back(panel); + panel->buildFromFile("panel_region_covenant.xml"); mTab->addTabPanel(panel); panel = new LLPanelRegionTerrainInfo; @@ -227,14 +232,9 @@ BOOL LLFloaterRegionInfo::postBuild() panel->buildFromFile("panel_region_environment.xml"); mTab->addTabPanel(panel); - panel = new LLPanelEstateInfo; - mInfoPanels.push_back(panel); - panel->buildFromFile("panel_region_estate.xml"); - mTab->addTabPanel(panel); - - panel = new LLPanelEstateCovenant; + panel = new LLPanelRegionDebugInfo; mInfoPanels.push_back(panel); - panel->buildFromFile("panel_region_covenant.xml"); + panel->buildFromFile("panel_region_debug.xml"); mTab->addTabPanel(panel); gMessageSystem->setHandlerFunc( |