| 343 | } |
| 344 | |
| 345 | void ObjectLabel::setContourColor( const Color& color, ViewportId id ) |
| 346 | { |
| 347 | if ( contourColor_.get( id ) == color ) |
| 348 | return; |
| 349 | |
| 350 | contourColor_.set( color, id ); |
| 351 | needRedraw_ = true; |
| 352 | } |
| 353 | |
| 354 | const ViewportProperty<Color>& ObjectLabel::getSourcePointColorsForAllViewports() const |
| 355 | { |
no test coverage detected