https://bugs.kde.org/show_bug.cgi?id=374913
--- Comment #2 from Alex Richardson <arichardson....@gmail.com> --- Seems like the problem might be in Qt. I added some debug output and it seems Qt is calling KDEPlatformFileDialogHelper::selectFile(const QUrl &filename) by simply concatenating filename with the CWD because it does QUrl::fromLocalFile("myfile.cpp") which results in "CWD/myfile.cpp" I'll see if I can work around this in plasma-integration https://code.woboq.org/qt5/qtbase/src/widgets/dialogs/qfiledialog.cpp.html#1048 ``` if (!d->usingWidgets()) { QUrl url = QUrl::fromLocalFile(filename); if (QFileInfo(filename).isRelative()) { QDir dir(d->options->initialDirectory().toLocalFile()); url = QUrl::fromLocalFile(dir.absoluteFilePath(filename)); } d->selectFile_sys(url); d->options->setInitiallySelectedFiles(QList<QUrl>() << url); return; } ``` -- You are receiving this mail because: You are watching all bug changes.