Using native file dialog for selecting files and folders

Users from my group almost exclusively do this because they hate using the standard QFileDialog to navigate to directories. They much prefer using the native file explorer to find the files they want to load. @lassoan I’m assuming this behavior of using drag-and-drop is also a result of this similar preference to the native file dialog over the QFileDialog?

Could we change to the following which uses native file explorer?

qfiledialog = qt.QFileDialog()
tuple_file_paths = qfiledialog.getOpenFileNames()  # Select file(s)
directory = qfiledialog.getExistingDirectory()  # Select directory
1 Like