* markers2 are drawn below the inset, hence increase the descent instead of ascent by the frame size.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18426 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Stefan Schimanski 2007-05-19 19:45:55 +00:00
parent d6e4e70ed3
commit a1802a2a96

View File

@ -273,7 +273,7 @@ void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
void Inset::metricsMarkers(Dimension & dim, int framesize) const void Inset::metricsMarkers(Dimension & dim, int framesize) const
{ {
dim.wid += 2 * framesize; dim.wid += 2 * framesize;
dim.asc += framesize; dim.des += framesize;
} }