From: André Pönitz Date: Tue, 21 Aug 2001 14:18:51 +0000 (+0000) Subject: better drawing of \not as suggested by Dekel X-Git-Tag: 1.6.10~20777 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=517dbda13518345ba58d8ec2da273460fe6609e0;p=features.git 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 --- diff --git a/src/mathed/math_notinset.C b/src/mathed/math_notinset.C index 5b72fc88b2..0d16cd9006 100644 --- a/src/mathed/math_notinset.C +++ b/src/mathed/math_notinset.C @@ -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, '/'); }