Typo in UIFrame repr
This commit is contained in:
parent
3fd5ad93e2
commit
43fac8f4f3
|
@ -225,7 +225,7 @@ PyObject* UIFrame::repr(PyUIFrameObject* self)
|
||||||
auto box = self->data->box;
|
auto box = self->data->box;
|
||||||
auto fc = box.getFillColor();
|
auto fc = box.getFillColor();
|
||||||
auto oc = box.getOutlineColor();
|
auto oc = box.getOutlineColor();
|
||||||
ss << "<Frame (x=" << box.getPosition().x << ", y=" << box.getPosition().y << ", x=" <<
|
ss << "<Frame (x=" << box.getPosition().x << ", y=" << box.getPosition().y << ", w=" <<
|
||||||
box.getSize().x << ", w=" << box.getSize().y << ", " <<
|
box.getSize().x << ", w=" << box.getSize().y << ", " <<
|
||||||
"outline=" << box.getOutlineThickness() << ", " <<
|
"outline=" << box.getOutlineThickness() << ", " <<
|
||||||
"fill_color=(" << (int)fc.r << ", " << (int)fc.g << ", " << (int)fc.b << ", " << (int)fc.a <<"), " <<
|
"fill_color=(" << (int)fc.r << ", " << (int)fc.g << ", " << (int)fc.b << ", " << (int)fc.a <<"), " <<
|
||||||
|
|
Loading…
Reference in New Issue