| 152 | } |
| 153 | |
| 154 | [[nodiscard]] LayerRow rowFromLayerInfo(const SceneLayerInfo& info) { |
| 155 | return LayerRow{ |
| 156 | .id = static_cast<qint64>(info.topic_id.id), |
| 157 | .name = info.display_name, |
| 158 | .visible = info.visible, |
| 159 | }; |
| 160 | } |
| 161 | |
| 162 | DoubleScrubber* makeScrubber(double min, double max, double step, double value) { |
| 163 | auto* scrubber = new DoubleScrubber; |
no outgoing calls
no test coverage detected