Skip to content

Commit eb80232

Browse files
authored
Merge pull request #165 from Juris-S/bugfix/incorrect-delayCall-registration
Fixing incorrect `delayCall` callback registrations
2 parents fbeeb77 + fdc98b5 commit eb80232

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ $RECYCLE.BIN/
6363

6464
# Visual Studio Code project
6565
.vscode/*
66+
.idea/*
6667
example_output/*
6768

6869
Assets/MyAWSCredentials.asset*

Assets/UXF/Scripts/Etc/ReorderableInspector/Editor/ReorderableArrayInspector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static void HandleScriptReload()
6262
{
6363
FORCE_INIT = true;
6464

65-
EditorApplication.delayCall = () => { EditorApplication.delayCall = () => { FORCE_INIT = false; }; };
65+
EditorApplication.delayCall += () => { EditorApplication.delayCall += () => { FORCE_INIT = false; }; };
6666
}
6767

6868
private static GUIStyle styleHighlight;

0 commit comments

Comments
 (0)