Fixed wxGraphicsPath concatenation with GDI+ renderer.

Since resulting wxGraphicPath should have the same state as appended path so we have to grab in wxGraphicsPath::AddPath also auxiliary data from appended wxGraphicsPath.

See #17532
This commit is contained in:
Artur Wieczorek
2016-05-12 21:13:47 +02:00
parent 4eababc004
commit 08cb54c4c1
2 changed files with 14 additions and 5 deletions

View File

@@ -96,7 +96,8 @@ public:
void AddLineToPoint(const wxPoint2DDouble& p);
/**
Adds another path.
Adds another path onto the current path. After this call the current
point will be at the added path's current point.
*/
virtual void AddPath(const wxGraphicsPath& path);