From: André Pönitz Date: Fri, 15 Feb 2002 17:34:07 +0000 (+0000) Subject: whichFont down to 5.3% X-Git-Tag: 1.6.10~19844 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8d1c58af82d1fc356f470dff97878ab7c3e8a2fe;p=features.git whichFont down to 5.3% git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3551 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/math_charinset.C b/src/mathed/math_charinset.C index 1773fa89a2..e0ba2e9e81 100644 --- a/src/mathed/math_charinset.C +++ b/src/mathed/math_charinset.C @@ -49,9 +49,7 @@ MathInset * MathCharInset::clone() const void MathCharInset::metrics(MathMetricsInfo const & mi) const { mi_ = mi; - ascent_ = mathed_char_ascent(code_, mi_, char_); - descent_ = mathed_char_descent(code_, mi_, char_); - width_ = mathed_char_width(code_, mi_, char_); + mathed_char_dim(code_, mi_, char_, ascent_, descent_, width_); }