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:
@@ -1237,7 +1237,8 @@ void wxGDIPlusPathData::CloseSubpath()
|
|||||||
if( m_figureOpened )
|
if( m_figureOpened )
|
||||||
{
|
{
|
||||||
// Ensure that sub-path being closed contains at least one point.
|
// 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_path->CloseFigure();
|
||||||
m_figureOpened = false;
|
m_figureOpened = false;
|
||||||
|
Reference in New Issue
Block a user