diff --git a/.vs/Switch_Toolbox/v15/.suo b/.vs/Switch_Toolbox/v15/.suo index a9bbb4e3..8c56ab8e 100644 Binary files a/.vs/Switch_Toolbox/v15/.suo and b/.vs/Switch_Toolbox/v15/.suo differ diff --git a/Switch_Toolbox_Library/Forms/Editors/ObjectEditor.cs b/Switch_Toolbox_Library/Forms/Editors/ObjectEditor.cs index 5533cc77..e0affe1f 100644 --- a/Switch_Toolbox_Library/Forms/Editors/ObjectEditor.cs +++ b/Switch_Toolbox_Library/Forms/Editors/ObjectEditor.cs @@ -49,8 +49,7 @@ namespace Switch_Toolbox.Library.Forms treeViewCustom1.BeginUpdate(); // No visual updates until we say // if (ClearAllNodes) // ClearNodes(); - - + treeViewCustom1.EndUpdate(); // Allow the treeview to update visually }); diff --git a/Switch_Toolbox_Library/Forms/Viewport.cs b/Switch_Toolbox_Library/Forms/Viewport.cs index bba77779..53ee3082 100644 --- a/Switch_Toolbox_Library/Forms/Viewport.cs +++ b/Switch_Toolbox_Library/Forms/Viewport.cs @@ -293,7 +293,7 @@ namespace Switch_Toolbox.Library GL_ControlLegacy.CamRotX = 0; GL_ControlLegacy.CamRotY = 0; GL_ControlLegacy.CameraTarget = new OpenTK.Vector3(0); - GL_ControlLegacy.CameraDistance = -10f; + GL_ControlLegacy.CameraDistance = 10f; GL_ControlLegacy.Refresh(); } else @@ -301,7 +301,7 @@ namespace Switch_Toolbox.Library GL_ControlModern.CamRotX = 0; GL_ControlModern.CamRotY = 0; GL_ControlModern.CameraTarget = new OpenTK.Vector3(0); - GL_ControlModern.CameraDistance = -10f; + GL_ControlModern.CameraDistance = 10f; GL_ControlModern.Refresh(); } }