From: Enrico Forestieri Date: Sun, 12 Jul 2009 14:56:38 +0000 (+0000) Subject: Honour preferences by allowing inline completion in mathed on "Ctrl-L". X-Git-Tag: 2.0.0~6072 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=14be173d4290efcc4f42b82afe23637f0b79f201;p=features.git Honour preferences by allowing inline completion in mathed on "Ctrl-L". git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30507 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/LyXFunc.cpp b/src/LyXFunc.cpp index 29d4db2832..98b21d1872 100644 --- a/src/LyXFunc.cpp +++ b/src/LyXFunc.cpp @@ -1708,7 +1708,8 @@ void LyXFunc::dispatch(FuncRequest const & cmd) // processKeySym to avoid another redraw just for a // changed inline completion if (cmd.origin == FuncRequest::KEYBOARD) { - if (cmd.action == LFUN_SELF_INSERT) + if (cmd.action == LFUN_SELF_INSERT + || (cmd.action == LFUN_ERT_INSERT && view()->cursor().inMathed())) lyx_view_->updateCompletion(view()->cursor(), true, true); else if (cmd.action == LFUN_CHAR_DELETE_BACKWARD) lyx_view_->updateCompletion(view()->cursor(), false, true);