X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftext.C;h=46259d4d8b7b5f20dc52bf6fc9ba559670616bea;hb=2523638092e2024bac408eee98ad2094bc4e4089;hp=1c1ddb63673f9899fb98ba70f4a8cda6f90982c0;hpb=467b0c0913e2000f728ff66ca0dc332ef69f39d9;p=lyx.git diff --git a/src/text.C b/src/text.C index 1c1ddb6367..46259d4d8b 100644 --- a/src/text.C +++ b/src/text.C @@ -2028,7 +2028,7 @@ void LyXText::insertChar(BufferView * bview, char c) // we would not get a rebreak! row->fill(fill(bview, row, workWidth(bview))); } - + if (c == Paragraph::META_INSET || row->fill() < 0) { refresh_y = y; refresh_row = row; @@ -2395,7 +2395,7 @@ LyXText::selectNextWordToSpellcheck(BufferView * bview, float & value) const WordLangTuple word = the_locking_inset->selectNextWordToSpellcheck(bview, value); if (!word.word().empty()) { value += float(cursor.y()); - value /= float(height); + value /= float(height); return word; } // we have to go on checking so move cursor to the next char @@ -3271,7 +3271,7 @@ int LyXText::drawLengthMarker(DrawRowParams & p, string const & prefix, switch (vsp.kind()) { case VSpace::LENGTH: { - str = prefix + " (" + vsp.asLyXCommand() + ")"; + str = prefix + " (" + vsp.asLyXCommand() + ')'; // adding or removing space bool const added = !(vsp.length().len().value() < 0.0); ty1 = added ? (start + arrow_size) : start;