| 419 | } |
| 420 | |
| 421 | bool SceneObjectsListDrawer::drawObject_( Object& object, const std::string& uniqueStr, int /*depth*/ ) |
| 422 | { |
| 423 | const bool hasRealChildren = !object.isAncillary() && objectHasSelectableChildren( object ); |
| 424 | |
| 425 | drawObjectVisibilityCheckbox_( object, uniqueStr ); |
| 426 | drawCustomObjectPrefixInScene_( object, false ); |
| 427 | return drawObjectCollapsingHeader_( object, uniqueStr, hasRealChildren ); |
| 428 | } |
| 429 | |
| 430 | bool SceneObjectsListDrawer::drawSkippedObject_( Object& object, const std::string& uniqueStr, int ) |
| 431 | { |
nothing calls this directly
no test coverage detected