MCPcopy Create free account
hub / github.com/christophhart/HISE / isBodyShown

Method isBodyShown

hi_scripting/scripting/scriptnode/api/NodeBase.cpp:898–909  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

896{ return false; }
897
898bool NodeBase::isBodyShown() const
899{
900 if (v_data[PropertyIds::Folded])
901 return false;
902
903 if (auto p = getParentNode())
904 {
905 return p->isBodyShown();
906 }
907
908 return true;
909}
910
911HelpManager& NodeBase::getHelpManager()
912{ return helpManager; }

Callers 3

paintOverChildrenMethod · 0.80
arrowKeyActionMethod · 0.80
addButtonMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected