We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0126f commit 9445de0Copy full SHA for 9445de0
win32ss/gdi/ntgdi/gdiobj.c
@@ -481,8 +481,9 @@ ENTRY_ReferenceEntryByHandle(HGDIOBJ hobj, FLONG fl)
481
PENTRY pentry;
482
PTHREADINFO pti = PsGetCurrentThreadWin32Thread();
483
484
- /* Allow a window that is moving or resizing to have access to all of its child
485
- windows dc's even if the dc belongs to another process i.e. 3D Screensaver */
+ /* HACK: This may be a hack but it fixes CORE-5601.
+ * Allow a window that is moving or resizing to have access to all of its child
486
+ * windows dc's even if the dc belongs to another process i.e. 3D Screensaver */
487
if (pti && pti->TIF_flags & TIF_MOVESIZETRACKING)
488
fl = GDIOBJFLAG_IGNOREPID;
489
0 commit comments