Skip to content

Commit 127d402

Browse files
committed
menu cleanup
1 parent f91fb24 commit 127d402

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

source/FrameRecorder/Core/Editor/AboutBox.cs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1-
using UnityEngine;
1+
using System;
2+
using UnityEngine;
23

34
namespace UnityEditor.FrameRecorder
45
{
56
public class AboutBox : EditorWindow
67
{
7-
[MenuItem("Tools/Recorder/About...")]
8+
[MenuItem("Tools/Recorder/About...", false, Int32.MinValue)]
89
public static void ShowAboutBox()
910
{
1011
EditorWindow.GetWindowWithRect<AboutBox>(new Rect(100, 100, 550, 310), true, "About Recorder");
1112
}
12-
13+
/*
14+
[MenuItem("Tools/Recorder/---------", false, Int32.MinValue+1)]
15+
public static void MenuSeperator()
16+
{
17+
}
18+
*/
1319
GUIContent s_Header;
1420

1521
void OnEnable()

0 commit comments

Comments
 (0)