From 26de117d4e74c2f05dad1be051a633c830409f81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Tue, 9 Feb 2010 17:55:17 +0000 Subject: [PATCH] * 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 --- src/frontends/qt4/GuiSpellchecker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/qt4/GuiSpellchecker.cpp b/src/frontends/qt4/GuiSpellchecker.cpp index 7fc734a58a..f4350981f0 100644 --- a/src/frontends/qt4/GuiSpellchecker.cpp +++ b/src/frontends/qt4/GuiSpellchecker.cpp @@ -183,6 +183,7 @@ void GuiSpellchecker::on_addPB_clicked() void GuiSpellchecker::on_ignorePB_clicked() { + dispatch(FuncRequest(LFUN_ESCAPE)); dispatch(FuncRequest(LFUN_CHAR_FORWARD)); check(); } -- 2.39.2