I am having an issue in a QT project where the QFileDialog sometimes fails. The trickiest part is that it isn't consistent. Sometimes it works fine and then without changing the code, it will fail. The code to load the file from the QFileDialog is
QString file = QFileDialog::getOpenFileName(this, QString());
When it fails, the file dialog is still active and you can still click "Cancel" and "Open" but the dialog is completely blank.
The same code works fine on Mac (QtCreator 4.7.4 (64 bit)), and I can remotely connect into the compiled program on Linux via ssh and it still works, it just fails when I am literally sitting at the computer. I am running it on QtCreator 4.7.0 (32 bit)) on Linux (GNOME).
I haven't yet found known back-compatibility issues with Qt 4.7.4 to 4.7.0 related to the File dialog, and since it's rebuilding the project from scratch, it doesn't make sense to me that it would be a 32 bit vs. 64 bit issue.
Any ideas would be really helpful!