| 108 | } |
| 109 | |
| 110 | void DotRenderable::render(QPainter &painter, const RenderConfig &config) const |
| 111 | { |
| 112 | if (config.options.testFlag(RenderConfig::ForceMinSize) && extent.width() * config.scaling < 1.5) |
| 113 | painter.drawEllipse(extent.center(), 0.5 / config.scaling, 0.5 / config.scaling); |
| 114 | else |
| 115 | painter.drawEllipse(extent); |
| 116 | } |
| 117 | |
| 118 | |
| 119 |
no test coverage detected