We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2017492 commit 4c1ccb7Copy full SHA for 4c1ccb7
source/FrameRecorder/Core/Editor/RecorderWindow.cs
@@ -109,19 +109,22 @@ public void OnGUI()
109
{
110
EditorGUILayout.EndScrollView();
111
}
112
+ }
113
+ catch (ExitGUIException)
114
+ {
115
+
116
117
catch (Exception ex)
118
119
if (m_State == EState.Recording)
120
121
try
122
123
Debug.LogError("Aborting recording due to an exception!\n" + ex.ToString());
124
StopRecording();
125
- catch (Exception)
- {
-
- }
126
+ catch (Exception) {}
127
128
Debug.LogException(ex);
129
130
0 commit comments