diff --git a/src/Menu/ResizeDrag.cs b/src/Menu/ResizeDrag.cs index 2f58fc4..77e9ad4 100644 --- a/src/Menu/ResizeDrag.cs +++ b/src/Menu/ResizeDrag.cs @@ -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(); }