Patch 1476076 about negative wxImage size when

copying (or something).


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-04-30 11:44:14 +00:00
parent 1219d8a408
commit 781945ea41

View File

@@ -708,6 +708,10 @@ wxImage wxImage::Size( const wxSize& size, const wxPoint& pos,
wxRect subRect(pos.x, pos.y, width, height);
wxRect finalRect(0, 0, size.GetWidth(), size.GetHeight());
if (pos.x < 0)
finalRect.width -= pos.x;
if (pos.y < 0)
finalRect.height -= pos.y;
subRect.Intersect(finalRect);