We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f78aa commit 110c062Copy full SHA for 110c062
bindings/SofaGui/src/SofaPython3/SofaGui/Module_SofaGui.cpp
@@ -70,6 +70,12 @@ PYBIND11_MODULE(Gui, m) {
70
else
71
{
72
msg_warning("Sofa.Gui") << "Failed loading and/or customizing qt.conf from " << inputFilepath;
73
+
74
+ std::cout << "qt_resource_data:" << std::endl;
75
+ for (int i = 0 ; i < qt_resource_data.size() ; ++i) {
76
+ std::cout << qt_resource_data[i];
77
+ }
78
+ std::cout << std::endl;
79
}
80
81
// This is needed to make sure the GuiMain library (libSofaGuiMain.so) is correctly
0 commit comments