| 131 | } |
| 132 | |
| 133 | void VisualObject::setFrontColorsForAllViewports( ViewportProperty<Color> val, bool selected ) |
| 134 | { |
| 135 | selected ? selectedColor_ = std::move( val ) : unselectedColor_ = std::move( val ); |
| 136 | needRedraw_ = true; |
| 137 | } |
| 138 | |
| 139 | const ViewportProperty<Color>& VisualObject::getBackColorsForAllViewports() const |
| 140 | { |
no outgoing calls
no test coverage detected