mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-27 10:37:53 +00:00
Update row width when inset is indented
Fixes bug #10758 (cherry picked from commit 3f1944a7c97444c6cb5b74a1772ac17f13012902)
This commit is contained in:
parent
e013df6d8a
commit
e781628575
@ -640,8 +640,10 @@ void TextMetrics::computeRowMetrics(Row & row, int width) const
|
||||
break;
|
||||
case LYX_ALIGN_LEFT:
|
||||
// a displayed inset that is flushed
|
||||
if (Inset const * inset = par.getInset(row.pos()))
|
||||
if (Inset const * inset = par.getInset(row.pos())) {
|
||||
row.left_margin += inset->indent(*bv_);
|
||||
row.dimension().wid += inset->indent(*bv_);
|
||||
}
|
||||
break;
|
||||
case LYX_ALIGN_RIGHT:
|
||||
if (Inset const * inset = par.getInset(row.pos())) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user