From: Jean-Marc Lasgouttes Date: Wed, 21 Oct 2020 16:50:31 +0000 (+0200) Subject: Revert "Do not set language from keyboard in passthru setting" X-Git-Tag: lyx-2.4.0dev-acb2ca7b~17 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2395522aa7b536c1872076c04c2f187c4efaf49d;p=features.git Revert "Do not set language from keyboard in passthru setting" This reverts commit d94bd072647fca813df464c6ef14d84445c603ca. --- diff --git a/src/Cursor.cpp b/src/Cursor.cpp index b30ed0f794..7197b91cf2 100644 --- a/src/Cursor.cpp +++ b/src/Cursor.cpp @@ -2399,8 +2399,7 @@ bool notifyCursorLeavesOrEnters(Cursor const & old, Cursor & cur) void Cursor::setLanguageFromInput() { - if (!lyxrc.respect_os_kbd_language - || (inTextEd() && paragraph().isPassthru()) + if (!lyxrc.respect_os_kbd_language) return; string const & code = theApp()->inputLanguageCode(); Language const * lang = languages.getFromCode(code, buffer()->getLanguages());