mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Limit fix for bug #6063 to math insets and only when inline completion
is disabled in math. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39337 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6368d7ffd7
commit
6159350368
@ -311,7 +311,7 @@ void GuiCompleter::updateVisibility(Cursor & cur, bool start, bool keep, bool cu
|
||||
if (!inlineVisible() && possibleInlineState && start
|
||||
&& cur.inset().automaticInlineCompletion())
|
||||
inline_timer_.start(int(lyxrc.completion_inline_delay * 1000));
|
||||
else {
|
||||
else if (cur.inMathed() && !lyxrc.completion_inline_math) {
|
||||
// no inline completion, hence a metrics update is needed
|
||||
if (!(cur.result().screenUpdate() & Update::Force))
|
||||
cur.screenUpdateFlags(cur.result().screenUpdate() | Update::SinglePar);
|
||||
|
Loading…
Reference in New Issue
Block a user