| 146 | } |
| 147 | |
| 148 | void FeatureObject::setDecorationsColor( const Color& color, bool selected, ViewportId viewportId ) |
| 149 | { |
| 150 | auto& target = decorationsColor_[selected]; |
| 151 | if ( target.get( viewportId ) != color ) |
| 152 | target.set( color, viewportId ); |
| 153 | } |
| 154 | |
| 155 | const ViewportProperty<Color>& FeatureObject::getDecorationsColorForAllViewports( bool selected ) const |
| 156 | { |
no test coverage detected