mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Browse buttons were freezing the application, see #279
--HG-- branch : develop
This commit is contained in:
parent
75d3db65e8
commit
cf5a1a5a85
1 changed files with 5 additions and 0 deletions
|
@ -86,6 +86,11 @@ int main(int argc, char *argv[])
|
|||
_CrtSetDbgFlag (_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
// to fix the bug with QFileDialog::getExistingDirectory hanging under Windows
|
||||
CoInitialize(NULL);
|
||||
#endif
|
||||
|
||||
NLMISC::CApplicationContext appContext;
|
||||
|
||||
QApplication app(argc, argv);
|
||||
|
|
Loading…
Reference in a new issue