Fix unintentional self-assignment
Assume what it was meant to be
This commit is contained in:
@@ -9302,7 +9302,7 @@ bool wxRichTextStdRenderer::MeasureBullet(wxRichTextParagraph* paragraph, wxDC&
|
|||||||
if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD)
|
if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD)
|
||||||
{
|
{
|
||||||
sz.x = (int) (((float) dc.GetCharHeight()) * wxRichTextBuffer::GetBulletProportion());
|
sz.x = (int) (((float) dc.GetCharHeight()) * wxRichTextBuffer::GetBulletProportion());
|
||||||
sz.y = sz.y;
|
sz.y = sz.x;
|
||||||
}
|
}
|
||||||
else if (attr.HasBulletText())
|
else if (attr.HasBulletText())
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user