Use *.* to select all files in the file selection dialog on Windows. Using shortcuts for navigation is now possible.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24093 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Joost Verburg 2008-04-02 12:03:47 +00:00
parent bfdee3f1cd
commit 75896240e4

View File

@ -99,7 +99,12 @@ FileFilterList::FileFilterList(docstring const & qt_style_filter)
// FIXME UNICODE
string const filter = to_utf8(qt_style_filter)
+ (qt_style_filter.empty() ? string() : ";;")
+ to_utf8(_("All files (*)"));
+ to_utf8(_("All Files "))
#if defined(_WIN32)
+ ("(*.*)");
#else
+ ("(*)");
#endif
// Split data such as "TeX documents (*.tex);;LyX Documents (*.lyx)"
// into individual filters.