Commit 833ff146 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/imagelist: Simplify setting ImageList_DragEnter() return code.

parent ac75a00b
......@@ -930,11 +930,7 @@ ImageList_DragEnter (HWND hwndLock, INT x, INT y)
InternalDrag.y = y;
/* draw the drag image and save the background */
if (!ImageList_DragShowNolock(TRUE)) {
return FALSE;
}
return TRUE;
return ImageList_DragShowNolock(TRUE);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment