Skip to content

Commit

Permalink
Gui: fix ViewProviderPythonFeature getDetail()
Browse files Browse the repository at this point in the history
  • Loading branch information
realthunder authored and wwmayer committed Oct 22, 2019
1 parent 8421443 commit 42987f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gui/ViewProviderPythonFeature.h
Expand Up @@ -263,7 +263,7 @@ class ViewProviderPythonFeatureT : public ViewProviderT
}
virtual SoDetail* getDetail(const char* name) const override {
SoDetail *det = 0;
if(!imp->getDetail(name,det))
if(imp->getDetail(name,det))
return det;
return ViewProviderT::getDetail(name);
}
Expand Down

0 comments on commit 42987f8

Please sign in to comment.