How to force QML's file dialog instead of native?
-
wrote on 4 Jun 2019, 18:42 last edited by
I'm finding that the native File Dialog on Windows either gets blocked by the AV (so the application freezes indefinitely) or gets delayed for a long while. How can I force QML to use its fallback file dialog instead of the native one? Or at minimum, Qt's?
-
wrote on 4 Jun 2019, 18:53 last edited by
Found it:
FileDialog { options: FileDialog.DontUseNativeDialog }
1/2