Skip to content

Commit

Permalink
[SofaGraphComponent] Update the SceneCheckMissingRequiredPlugin to us…
Browse files Browse the repository at this point in the history
…e the introduced d_loadedPlugins instead of d_pluginName

d_pluginName is containing a list of name to try while d_loadedPlugins is
the list of plugin that have been actually loaded.
  • Loading branch information
damienmarchal committed Aug 26, 2020
1 parent 6f687e1 commit b214933
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void SceneCheckMissingRequiredPlugin::doInit(Node* node)

for(auto& plugin : plugins)
{
for(auto& pluginName : plugin->d_pluginName.getValue())
for(auto& pluginName : plugin->d_loadedPlugins.getValue())
{
m_loadedPlugins[pluginName] = true;
}
Expand Down

0 comments on commit b214933

Please sign in to comment.