From a03efe6936f4339be9931438322aa46616234b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 10 Jul 2002 10:46:37 +0000 Subject: [PATCH] cosmeics git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4586 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_symbolinset.C | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mathed/math_symbolinset.C b/src/mathed/math_symbolinset.C index 1cb291f50e..c434ded847 100644 --- a/src/mathed/math_symbolinset.C +++ b/src/mathed/math_symbolinset.C @@ -57,8 +57,7 @@ void MathSymbolInset::metrics(MathMetricsInfo & mi) const if (isRelOp()) width_ += 6; // seperate things a bit - if (sym_->draw.size() > 1) - width_ += 2; + width_ += 2; scriptable_ = false; if (mi.base.style == LM_ST_DISPLAY) @@ -75,8 +74,7 @@ void MathSymbolInset::draw(MathPainterInfo & pi, int x, int y) const // << "'\n"; if (isRelOp()) x += 3; - if (sym_->draw.size() > 1) - x += 1; + x += 1; MathFontSetChanger dummy(pi.base, sym_->inset.c_str()); drawStr(pi, pi.base.font, x, y - h_, sym_->draw); }