소스 검색

Null: Fix missing damage event

Camilla Löwy 1 년 전
부모
커밋
64b4f0f30c
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/null_window.c

+ 1 - 0
src/null_window.c

@@ -259,6 +259,7 @@ void _glfwSetWindowSizeNull(_GLFWwindow* window, int width, int height)
         window->null.width = width;
         window->null.height = height;
         _glfwInputFramebufferSize(window, width, height);
+        _glfwInputWindowDamage(window);
         _glfwInputWindowSize(window, width, height);
     }
 }