Fixed closing sub-path of wxGraphicsPath with GDI+ renderer.

Add additional point to the sub-path being closed only if this sub-path is empty (its native current point is not set).
This commit is contained in:
Artur Wieczorek
2016-05-12 21:18:23 +02:00
parent 5ffbc7c175
commit 49a634e63f

View File

@@ -1237,7 +1237,8 @@ void wxGDIPlusPathData::CloseSubpath()
if( m_figureOpened )
{
// Ensure that sub-path being closed contains at least one point.
m_path->AddLine(m_logCurrentPoint, m_logCurrentPoint);
if ( m_logCurrentPointSet )
m_path->AddLine(m_logCurrentPoint, m_logCurrentPoint);
m_path->CloseFigure();
m_figureOpened = false;