Fix unintentional self-assignment
Assume what it was meant to be
This commit is contained in:
parent
ea5cf38d62
commit
e89cd4f2dd
@ -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())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user