mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
bfdee3f1cd
commit
75896240e4
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user