mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 17:29:06 +00:00
Fixed: Align UL, LI list style type marker outside content
This commit is contained in:
parent
9140d23557
commit
39cfbc2a7c
1 changed files with 7 additions and 1 deletions
|
@ -1729,8 +1729,14 @@ namespace NLGUI
|
||||||
ucstring str;
|
ucstring str;
|
||||||
str.fromUtf8(_UL.back().getListMarkerText());
|
str.fromUtf8(_UL.back().getListMarkerText());
|
||||||
addString (str);
|
addString (str);
|
||||||
|
|
||||||
|
sint32 indent = LIIndent;
|
||||||
|
// list-style-type: outside
|
||||||
|
if (_CurrentViewLink)
|
||||||
|
indent -= _CurrentViewLink->getMaxUsedW();
|
||||||
|
getParagraph()->setFirstViewIndent(indent);
|
||||||
|
|
||||||
flushString ();
|
flushString ();
|
||||||
getParagraph()->setFirstViewIndent(LIIndent);
|
|
||||||
|
|
||||||
_UL.back().Value++;
|
_UL.back().Value++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue