소스 검색

Change assembly watcher after notification changes

Fixed Mono not building after #39986 was merged due to a constant that got renamed.
G'lek 5 년 전
부모
커밋
a5abacd1e7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/mono/editor/GodotTools/GodotTools/HotReloadAssemblyWatcher.cs

+ 1 - 1
modules/mono/editor/GodotTools/GodotTools/HotReloadAssemblyWatcher.cs

@@ -10,7 +10,7 @@ namespace GodotTools
 
         public override void _Notification(int what)
         {
-            if (what == Node.NotificationWmFocusIn)
+            if (what == Node.NotificationWmWindowFocusIn)
             {
                 RestartTimer();