https://bugs.kde.org/show_bug.cgi?id=441802
--- Comment #7 from Friedrich W. H. Kossebau <[email protected]> --- Quick dump of where on first understanding the issue might to be searched: the file dialog picker dialog as provided by Qt when using QFileDialog can be delivered from the platform integration used for the respective environment. That will be loaded from a respective plugin, where e.g. a QPlatformTheme subclass is provided and in the override of QPlatformDialogHelper *createPlatformDialogHelper(DialogType type) const would provide a specific subclass of QPlatformFileDialogHelper in case of type being QPlatformTheme::FileDialog. That QPlatformFileDialogHelper implementation needs to emit the signal void filesSelected(const QList<QUrl> &files); accordingly to the expectations of QFileDialog itself, which cares for the emission of the QFileDialog::urlsSelected when that other signal is emitted See the wire-up at https://code.qt.io/cgit/qt/qtbase.git/tree/src/widgets/dialogs/qfiledialog.cpp?h=5.15#n559 So we would need to find what QPA plugin(s) are used here and what their QPlatformTheme subclass injects here as file dialog helper code. As by now I would suspect it misses to emit the filesSelected() signal. No clue about QPA myself otherwise, also not a bug of Okteta then. -- You are receiving this mail because: You are watching all bug changes.
