Fixed: Browse buttons were freezing the application, see #279

--HG--
branch : develop
feature/pipeline-tools
kervala 8 years ago
parent 75d3db65e8
commit cf5a1a5a85

@ -86,6 +86,11 @@ int main(int argc, char *argv[])
_CrtSetDbgFlag (_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF); _CrtSetDbgFlag (_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
#endif #endif
#ifdef Q_OS_WIN
// to fix the bug with QFileDialog::getExistingDirectory hanging under Windows
CoInitialize(NULL);
#endif
NLMISC::CApplicationContext appContext; NLMISC::CApplicationContext appContext;
QApplication app(argc, argv); QApplication app(argc, argv);

Loading…
Cancel
Save