| 50 | |
| 51 | |
| 52 | std::unique_ptr<RenderQueue> Scale::InvalidateImpl() const { |
| 53 | return Context::Get().GetEngine().CreateScaleDrawable( std::dynamic_pointer_cast<const Scale>( shared_from_this() ) ); |
| 54 | } |
| 55 | |
| 56 | sf::Vector2f Scale::CalculateRequisition() { |
| 57 | auto slider_length = Context::Get().GetEngine().GetProperty<float>( "SliderLength", shared_from_this() ); |
nothing calls this directly
no test coverage detected