* GuiSpellchecker.cpp:

- clear selection when ignore is clicked. Otherwise, LyX hangs
	  at the last word of an inset, if this word was misspelled.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33396 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2010-02-09 17:55:17 +00:00
parent 5f4c5c5da9
commit 26de117d4e

View File

@ -183,6 +183,7 @@ void GuiSpellchecker::on_addPB_clicked()
void GuiSpellchecker::on_ignorePB_clicked()
{
dispatch(FuncRequest(LFUN_ESCAPE));
dispatch(FuncRequest(LFUN_CHAR_FORWARD));
check();
}