浏览代码

Fix GDI objects leak when setting custom cursor

Fixes #19906
Marcin Zawiejski 6 年之前
父节点
当前提交
62f3611271
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      platform/windows/os_windows.cpp

+ 3 - 0
platform/windows/os_windows.cpp

@@ -2335,6 +2335,9 @@ void OS_Windows::set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shap
 		iconinfo.hbmMask = hAndMask;
 		iconinfo.hbmColor = hXorMask;
 
+		if (cursors[p_shape])
+			DestroyIcon(cursors[p_shape]);
+
 		cursors[p_shape] = CreateIconIndirect(&iconinfo);
 
 		if (p_shape == cursor_shape) {