BUG: allow cursor to be changed by the OS
This commit is contained in:
parent
d53bf33dda
commit
17d6f9e170
|
@ -1454,6 +1454,10 @@ void CMakeSetupDialog::OnDropFiles(HDROP hDropInfo)
|
|||
|
||||
BOOL CMakeSetupDialog::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
|
||||
{
|
||||
CDialog::OnSetCursor(pWnd, nHitTest, message);
|
||||
if(m_Cursor == LoadCursor(NULL, IDC_WAIT))
|
||||
{
|
||||
::SetCursor(m_Cursor);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue