mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 09:15:50 +00:00
fix bug 895
http://bugzilla.lyx.org/show_bug.cgi?id=895 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16993 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4851632b00
commit
28c5bb870f
@ -143,8 +143,14 @@ string const ControlPrefs::browsekbmap(string const & file) const
|
||||
|
||||
string const ControlPrefs::browsedict(string const & file) const
|
||||
{
|
||||
return browseFile(file, _("Choose personal dictionary"),
|
||||
FileFilterList(_("*.ispell")));
|
||||
if (lyxrc.use_spell_lib)
|
||||
return browseFile(file,
|
||||
_("Choose personal dictionary"),
|
||||
FileFilterList(_("*.pws")));
|
||||
else
|
||||
return browseFile(file,
|
||||
_("Choose personal dictionary"),
|
||||
FileFilterList(_("*.ispell")));
|
||||
}
|
||||
|
||||
|
||||
|
@ -220,6 +220,9 @@ What's new
|
||||
- Rename lib/ui/std*.ui include files to *.inc so that the user is not
|
||||
tempted to try them (bug 2387).
|
||||
|
||||
- add Aspell/Pspell's file extension for personal dictionary files
|
||||
in preferences (bug 895)
|
||||
|
||||
* BUILD/INSTALLATION:
|
||||
|
||||
- Allow autoconf 2.60 and 2.61 for building.
|
||||
|
Loading…
Reference in New Issue
Block a user