better drawing of \not as suggested by Dekel

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2568 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-08-21 14:18:51 +00:00
parent a400d98de6
commit 517dbda135

View File

@ -32,7 +32,7 @@ void MathNotInset::metrics(MathStyles st) const
{
size(st);
mathed_char_dim(LM_TC_VAR, size_, '/', ascent_, descent_, width_);
width_ = 1;
width_ = 0;
}
@ -41,5 +41,5 @@ void MathNotInset::draw(Painter & pain, int x, int y) const
xo(x);
yo(y);
drawChar(pain, LM_TC_VAR, size_, x + 4, y, '/');
drawChar(pain, LM_TC_VAR, size_, x, y, '/');
}