| 208 | |
| 209 | |
| 210 | void TextObject::setBox(qint32 mid_x, qint32 mid_y, qreal width, qreal height) |
| 211 | { |
| 212 | has_single_anchor = false; |
| 213 | coords[0].setNativeX(mid_x); |
| 214 | coords[0].setNativeY(mid_y); |
| 215 | size = {width, height}; |
| 216 | setOutputDirty(); |
| 217 | } |
| 218 | |
| 219 | void TextObject::setBoxSize(const MapCoord& size) |
| 220 | { |
no test coverage detected