Tommaso Cucinotta wrote:
How is the paragraph width controlled, in LyX ?
I'm getting all paragraphs displayed as a single row
(i.e. they are not being broken at all at the window width).

Look at TextMetrics::rowWidth()


Any clue of what I could have modified wrong ?

I guess you touched at the passed textwidth at metrics time:

bool TextMetrics::metrics(MetricsInfo & mi, Dimension & dim, int min_width)
{
        BOOST_ASSERT(mi.base.textwidth);
        max_width_ = mi.base.textwidth;


Abdel.

Reply via email to