Fix unintentional self-assignment

Assume what it was meant to be
This commit is contained in:
Paul Cornett 2019-04-04 10:09:21 -07:00
parent ea5cf38d62
commit e89cd4f2dd

View File

@ -9302,7 +9302,7 @@ bool wxRichTextStdRenderer::MeasureBullet(wxRichTextParagraph* paragraph, wxDC&
if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD)
{
sz.x = (int) (((float) dc.GetCharHeight()) * wxRichTextBuffer::GetBulletProportion());
sz.y = sz.y;
sz.y = sz.x;
}
else if (attr.HasBulletText())
{