mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Safer code for allowMultiPar(), thx Angus
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20939 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f357fb955f
commit
ee038db36d
@ -211,7 +211,8 @@ static bool doInsertInset(Cursor & cur, Text * text,
|
||||
|
||||
if (gotsel && pastesel) {
|
||||
lyx::dispatch(FuncRequest(LFUN_PASTE, "0"));
|
||||
if (!static_cast<InsetText *>(inset)->allowMultiPar()
|
||||
InsetText * insetText = dynamic_cast<InsetText *>(inset);
|
||||
if (insetText && !insetText->allowMultiPar()
|
||||
|| cur.lastpit() == 0) {
|
||||
// reset first par to default
|
||||
LayoutPtr const layout =
|
||||
|
Loading…
Reference in New Issue
Block a user