https://bugs.documentfoundation.org/show_bug.cgi?id=154881
--- Comment #9 from Hossein <[email protected]> --- (In reply to Jonathan Clark from comment #8) > Unless I'm overlooking something, we already support "Thai Distributed": > it's the default behavior when a Thai paragraph is justified. This was added > to the code prior to 2002. OK, that is interesting. Then, the issue is not lack of support in layout level, but in other levels of Thai support. Is that correct? Looking into these files: offapi/com/sun/star/style/ParagraphAdjust.idl oovbaapi/ooo/vba/word/WdParagraphAlignment.idl I see incompatibilities with Word. For example, this is the content of the second file: module ooo { module vba { module word { constants WdParagraphAlignment { const long wdAlignParagraphCenter = 1; const long wdAlignParagraphDistribute = 4; const long wdAlignParagraphJustify = 3; const long wdAlignParagraphJustifyHi = 7; const long wdAlignParagraphJustifyLow = 8; const long wdAlignParagraphJustifyMed = 5; const long wdAlignParagraphLeft = 0; const long wdAlignParagraphRight = 2; const long wdAlignParagraphThaiJustify = 9; }; }; }; }; Only some of these are actually used / accepted in sw/source/ui/vba/vbaparagraphformat.cxx. I can say distribute=4, thaijustify=9 along justify low=8/medium=5/high=7 (with import/export and layout implemented recently with tdf#155707), are not used. Importing and exporting such values are also important for compatibility reasons. Could you please elaborate on what is supported, and what is not? -- You are receiving this mail because: You are the assignee for the bug.
