When calling DrawIconEx(), do not use DI_COMPAT or DI_DEFAULTSIZE on WinCE (fixes ticket #10200)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56852 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1530,7 +1530,10 @@ void wxCursorProperty::OnCustomPaint( wxDC& dc,
|
||||
0,
|
||||
0,
|
||||
NULL,
|
||||
DI_COMPAT | DI_DEFAULTSIZE | DI_NORMAL
|
||||
#if !defined(__WXWINCE__)
|
||||
DI_COMPAT | DI_DEFAULTSIZE |
|
||||
#endif
|
||||
DI_NORMAL
|
||||
);
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user