mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 11:52:25 +00:00
Fix flushing of row that was cut after an hyphen
When using Qt stuff in breakAt, it may happen that the row is broken
after an hyphen (whereas the old code would only consider spaces).
The fact that we abuse the Row::right_boundary() property to detect when
a row should be flushed broke justification when a row is cut at an
hyphen.
Fix this by introducing a new Row::flushed() property and set it as needed.
(cherry picked from commit 8e7d0c2002
)
This commit is contained in:
parent
b0673bd1fa
commit
1438123a13
@ -148,7 +148,7 @@ Row::Row()
|
||||
sel_beg(-1), sel_end(-1),
|
||||
begin_margin_sel(false), end_margin_sel(false),
|
||||
changed_(false), crc_(0),
|
||||
pit_(0), pos_(0), end_(0), right_boundary_(false)
|
||||
pit_(0), pos_(0), end_(0), right_boundary_(false), flushed_(false)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -160,6 +160,10 @@ public:
|
||||
void right_boundary(bool b) { right_boundary_ = b; }
|
||||
///
|
||||
bool right_boundary() const { return right_boundary_; }
|
||||
///
|
||||
void flushed(bool b) { flushed_ = b; }
|
||||
///
|
||||
bool flushed() const { return flushed_; }
|
||||
|
||||
///
|
||||
Dimension const & dimension() const { return dim_; }
|
||||
@ -297,8 +301,10 @@ private:
|
||||
pos_type pos_;
|
||||
/// one behind last pos covered by this row
|
||||
pos_type end_;
|
||||
// Is there is a boundary at the end of the row (display inset...)
|
||||
// Is there a boundary at the end of the row (display inset...)
|
||||
bool right_boundary_;
|
||||
// Shall the row be flushed when it is supposed to be justified?
|
||||
bool flushed_;
|
||||
/// Row dimension.
|
||||
Dimension dim_;
|
||||
};
|
||||
|
@ -553,8 +553,7 @@ LyXAlignment TextMetrics::getAlign(Paragraph const & par, Row const & row) const
|
||||
// not justify stuff, then don't stretch.
|
||||
// A forced block alignment can only be overridden the 'no
|
||||
// justification on screen' setting.
|
||||
if (((row.right_boundary() || row.endpos() == par.size())
|
||||
&& !forced_block)
|
||||
if ((row.flushed() && !forced_block)
|
||||
|| !bv_->buffer().params().justification)
|
||||
align = text_->isRTL(par) ? LYX_ALIGN_RIGHT : LYX_ALIGN_LEFT;
|
||||
}
|
||||
@ -904,7 +903,7 @@ void TextMetrics::breakRow(Row & row, int const right_margin, pit_type const pit
|
||||
&& inset->display())
|
||||
|| (!row.empty() && row.back().inset
|
||||
&& row.back().inset->display())) {
|
||||
row.right_boundary(true);
|
||||
row.flushed(true);
|
||||
need_new_row = par.isNewline(i);
|
||||
++i;
|
||||
break;
|
||||
@ -935,8 +934,13 @@ void TextMetrics::breakRow(Row & row, int const right_margin, pit_type const pit
|
||||
// of success, reset indication that the row was broken abruptly.
|
||||
int const next_width = max_width_ - leftMargin(max_width_, row.pit(), row.endpos())
|
||||
- rightMargin(row.pit());
|
||||
if (row.shortenIfNeeded(body_pos, width, next_width))
|
||||
row.right_boundary(!row.empty() && row.back().endpos == row.endpos());
|
||||
|
||||
row.shortenIfNeeded(body_pos, width, next_width);
|
||||
row.right_boundary(!row.empty() && row.endpos() < end
|
||||
&& row.back().endpos == row.endpos());
|
||||
// Last row in paragraph is flushed
|
||||
if (row.endpos() == end)
|
||||
row.flushed(true);
|
||||
|
||||
// make sure that the RTL elements are in reverse ordering
|
||||
row.reverseRTL(is_rtl);
|
||||
|
@ -164,6 +164,8 @@ What's new
|
||||
- Fix wrong on-screen text layout where a word would be alone on a
|
||||
line.
|
||||
|
||||
- Fix wrong on-screen flushing of a row that was cut after an hyphen.
|
||||
|
||||
- Fix crash when the document contains Unicode line-breaking characters.
|
||||
|
||||
- Allow using colors supported by xcolor inside mathed (bug 10417).
|
||||
|
Loading…
Reference in New Issue
Block a user