diff options
author | prep <prep@lindenlab.com> | 2012-03-12 15:24:30 -0400 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2012-03-12 15:24:30 -0400 |
commit | 87b414c4934d0d52eef0b323245568bb1e95ec70 (patch) | |
tree | b9403c6ec40266540430daa5b092ec86698c5412 /indra/newview/llfloaterpathfindingconsole.cpp | |
parent | e558f5cb0b8c0937da0f08a1af149afbc497462c (diff) |
path-396: rendering options are reset when pathing window is closed.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.cpp')
-rw-r--r-- | indra/newview/llfloaterpathfindingconsole.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.cpp b/indra/newview/llfloaterpathfindingconsole.cpp index c336a30bc9..405b089155 100644 --- a/indra/newview/llfloaterpathfindingconsole.cpp +++ b/indra/newview/llfloaterpathfindingconsole.cpp @@ -207,6 +207,13 @@ void LLFloaterPathfindingConsole::onClose(bool pIsAppQuitting) LLFloater::onClose(pIsAppQuitting);
setHeartBeat( false );
setConsoleState(kConsoleStateUnknown);
+ //Reset all the checkboxes to default
+ mShowNavMeshCheckBox->set( false );
+ mShowWalkablesCheckBox->set( false );
+ mShowMaterialVolumesCheckBox->set( false );
+ mShowStaticObstaclesCheckBox->set( false );
+ mShowExclusionVolumesCheckBox->set( false );
+ mShowWorldCheckBox->set( false );
}
BOOL LLFloaterPathfindingConsole::handleAnyMouseClick(S32 x, S32 y, MASK mask, EClickType clicktype, BOOL down)
|