Gui: fix ViewProviderPythonFeature getDetail()

This commit is contained in:
Zheng, Lei
2019-10-22 09:25:38 +08:00
committed by wwmayer
parent 5f4a7f6246
commit 6b0823bc18

View File

@@ -263,7 +263,7 @@ public:
}
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);
}