X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FLyXFileDialog.cpp;h=f00bbd61bf31ea92f5d358e13226159b7b45c9c8;hb=ba76bf5eb85db5a10839fccee3430d906d3f7b70;hp=bba57747d85c02ff75f9ee1fe0a26f118aa9116a;hpb=b89cc942eb458284f40f4d4e7db58890c3288979;p=lyx.git diff --git a/src/frontends/qt4/LyXFileDialog.cpp b/src/frontends/qt4/LyXFileDialog.cpp index bba57747d8..f00bbd61bf 100644 --- a/src/frontends/qt4/LyXFileDialog.cpp +++ b/src/frontends/qt4/LyXFileDialog.cpp @@ -51,6 +51,13 @@ LyXFileDialog::LyXFileDialog(docstring const & t, : QFileDialog(qApp->focusWidget(), toqstr(t), toqstr(p), toqstr(filters.as_string())) { + QString const path = toqstr(p); + QDir dir(path); + // FIXME: workaround for a bug in qt which makes LyX crash + // with hidden paths (bug 4513). Recheck with recent Qt versions. + if (path.contains("/.")) + dir.setFilter(QDir::Hidden); + setDirectory(dir); setWindowTitle(toqstr(t)); QList layout = findChildren();