diff --git a/source/distro/changelog.txt b/source/distro/changelog.txt index 605f785..8b6badc 100644 --- a/source/distro/changelog.txt +++ b/source/distro/changelog.txt @@ -2,6 +2,8 @@ Changelog for Writer2LaTeX version 1.4 -> 1.6 ---------- version 1.5.3 ---------- +[w2x] Bugfix: Export of list-style-type now uses the correct values disc, circle, square (in that order) + [w2l] UI strings in the code are now externalized for localization [w2l] Color support in StarMath have changed with LO 4.4 and will with (probably) AOO 4.2 diff --git a/source/java/writer2latex/xhtml/ListStyleConverter.java b/source/java/writer2latex/xhtml/ListStyleConverter.java index 87a4ba1..b539940 100644 --- a/source/java/writer2latex/xhtml/ListStyleConverter.java +++ b/source/java/writer2latex/xhtml/ListStyleConverter.java @@ -16,11 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * - * Copyright: 2002-2014 by Henrik Just + * Copyright: 2002-2015 by Henrik Just * * All Rights Reserved. * - * Version 1.6 (2014-10-24) + * Version 1.6 (2015-06-03) * */ @@ -156,7 +156,7 @@ public class ListStyleConverter extends StyleConverterHelper { // Bullet. We can only choose from disc, bullet and square switch (nLevel % 3) { case 1: props.addValue("list-style-type","disc"); break; - case 2: props.addValue("list-style-type","bullet"); break; + case 2: props.addValue("list-style-type","circle"); break; case 0: props.addValue("list-style-type","square"); break; } }