mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Just remove bogus check
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10257 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6d8ce8c308
commit
9d651c4b6d
@ -1,3 +1,7 @@
|
||||
2005-07-16 Juergen Vigna <jug@lyx.org>
|
||||
|
||||
* text.C (singleWidth): Just remove bogus check
|
||||
|
||||
2005-07-16 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* funcrequest.C (split): avoid reading uninitialized char c
|
||||
@ -11,7 +15,7 @@
|
||||
* bufferparams.[Ch] (setPaperStuff): remove setPaperStuff and use a
|
||||
single papersize variable.
|
||||
|
||||
2005-07-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
2005-07-16 Juergen Vigna <jug@lyx.org>
|
||||
|
||||
* text3.C (dispatch): honor boundary when checking if a cursor
|
||||
movement has been done
|
||||
|
@ -442,8 +442,6 @@ int LyXText::singleWidth(Paragraph const & par,
|
||||
if (c == Paragraph::META_INSET)
|
||||
return par.getInset(pos)->width();
|
||||
|
||||
if (IsSeparatorChar(c))
|
||||
c = ' ';
|
||||
return font_metrics::width(c, font);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user