Skip to content

Commit e41ae5b

Browse files
committed
Update ScriptFinder.cs
1 parent 647b7d3 commit e41ae5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Editor/ScriptFinder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public sealed class ScriptFinder : EditorWindow
2424
private const string FindInternalButton = "Find Scripts";
2525
private const string FindAllButton = "Find All Project Scripts";
2626
private const string SearchPattern = "*.cs";
27-
private const bool searchAllSubFolders = true;
27+
private const string СtrlF3 = "%#F3";
2828

2929
private int totalScriptsFound;
3030
private string[] scriptsInFolder;
@@ -36,7 +36,7 @@ public sealed class ScriptFinder : EditorWindow
3636
private static string ProjectScriptPath =>
3737
Application.dataPath;
3838

39-
[MenuItem("RimuruDev Tools/Script Finder")]
39+
[MenuItem("RimuruDev Tools/Script Finder " + СtrlF3)]
4040
public static void ShowWindow()
4141
{
4242
var window = GetWindow<ScriptFinder>(Title);
@@ -75,7 +75,7 @@ private void FindScripts(string scriptPath)
7575
{
7676
const string logFormat = "<color=red>{0}</color>";
7777
const string message = "Incorrect name of the root folder. Please specify the correct name of the folder where you want to search for scripts.";
78-
Debug.LogFormat(logFormat,message);
78+
Debug.LogFormat(logFormat, message);
7979
}
8080

8181
totalScriptsFound = scriptsInFolder.Length;

0 commit comments

Comments
 (0)