mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-27 09:36:15 +00:00
Fixed: Crash when div was following p element
--HG-- branch : develop
This commit is contained in:
parent
016390446d
commit
f4d47f27aa
1 changed files with 5 additions and 6 deletions
|
@ -1190,7 +1190,12 @@ namespace NLGUI
|
||||||
if (haveParentDiv)
|
if (haveParentDiv)
|
||||||
parentId = getDiv()->getId();
|
parentId = getDiv()->getId();
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if (!_Paragraph)
|
||||||
|
newParagraph (0);
|
||||||
|
|
||||||
parentId = _Paragraph->getId();
|
parentId = _Paragraph->getId();
|
||||||
|
}
|
||||||
|
|
||||||
CInterfaceGroup *inst = CWidgetManager::getInstance()->getParser()->createGroupInstance(templateName, parentId+":"+id, tmplParams);
|
CInterfaceGroup *inst = CWidgetManager::getInstance()->getParser()->createGroupInstance(templateName, parentId+":"+id, tmplParams);
|
||||||
if (inst)
|
if (inst)
|
||||||
|
@ -1210,12 +1215,6 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!_Paragraph)
|
|
||||||
{
|
|
||||||
newParagraph (0);
|
|
||||||
paragraphChange ();
|
|
||||||
}
|
|
||||||
|
|
||||||
getParagraph()->addChild(inst);
|
getParagraph()->addChild(inst);
|
||||||
paragraphChange();
|
paragraphChange();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue