Enter table after insertion (#12101)

posForward() jumped over the inset, which is not what is wanted here,
I think (cf. other inset insertion methods)
This commit is contained in:
Juergen Spitzmueller 2023-10-22 10:19:50 +02:00
parent 0b5a9060c2
commit e9998fb1cc

View File

@ -5578,7 +5578,8 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
from_utf8(N_(" not known")));
}
if (doInsertInset(cur, this, cmd, false, true))
cur.posForward();
// move inside
(void) checkAndActivateInset(cur, true);
break;
}