Draw themed size gripper

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7023 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2018-10-18 17:45:47 +00:00
parent 2502961051
commit 8de43bfab1
4 changed files with 44 additions and 3 deletions

View file

@ -242,7 +242,7 @@ INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam
PAINTSTRUCT ps;
GetGripperPos(hwndDlg, g_resize.griprect);
HDC hdc = BeginPaint(hwndDlg, &ps);
DrawFrameControl(hdc, &g_resize.griprect, DFC_SCROLL, DFCS_SCROLLSIZEGRIP);
DrawGripper(hwndDlg, hdc, g_resize.griprect);
EndPaint(hwndDlg, &ps);
return TRUE;
}