Libreoffice supports the following types of text (paragraph) alignment: * Left: Align the leftmost character on each line to the left boundary * Right: Align the leftmost character on each line to the right boundary * Center: Align so that the content on each line is equidistant from the left and right boundaries. * Justify: Space so that each line except the last starts and ends at the left and right margin respectively; align last line to start Note that I used the term "start" in there. Indeed, it is not "Justify and align last line to left" or "to right" - it is to the start of the flow of characters in the paragraph. This hints that the full set of alignment modes should be * Left * Right * Start * End * Center [ ] Justify all lines but last Justification is not an independent mode - the last line can have any one of left, right, stand and end alignments. When you're only working with left-to-right text, there is no distinguishing between "Start" and "Left", and between "End" and "Right" - that's how LTR text flows. But these are conceptually different. And when we change paragraph direction, Left/Right alignment should not be affected, while Start/End should be flipped. It should be noted that: * The UI doesn't fully match this functionality (in different applications). * We get confused about file formats which do support Start/End, see bug 37128. * This causes interoperability issues when other apps do use Start and End - but not consistently and not quite opaquely. See bug 118350.
This is indeed lacking. Confirmed I guess.
El'ad, to confirm - you change the status to CONFIRMED... I've done this now myself based on your input (although generally people shouldn't confirm their own bugs).
@Mike I stumbled upon this by bug 147814. Some input from the DEV perspective would be helpful, I think.
(In reply to Telesto from comment #3) Do you think we should expand this bug into "Comprehensive support for Start and End everywhere we now have Left and Right"? Seeing how there are potentially other places where the distinction is relevant?
Justin Luth said, in https://git.libreoffice.org/core/commit/cf02b94bc513ee1b742b4c5d7174632b568e8b72 that: > IIRC, LO interally always refers to justify literally, > while DOCX normally depends on the RtL context, > treating LEFT as START and RIGHT as END. Thought I should also mention that here.