Update ResizeDrag.cs

This commit is contained in:
sinaioutlander 2020-09-14 20:27:49 +10:00
parent 9bb3c77bae
commit eea581f8d5

View File

@ -58,7 +58,11 @@ namespace Explorer
_rect.yMax = Mathf.Min(Screen.height, _rect.yMax); // modifying yMax affects height, not y
}
}
catch { }
catch
{
// throw safe Managed exception
throw new Exception("");
}
GUILayout.EndHorizontal();
}