Make the height of a formula at least the height of an 'I'

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2660 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-09-03 08:55:56 +00:00
parent 067a4819b8
commit 781db21b32

View File

@ -22,15 +22,13 @@ MathXArray::MathXArray()
void MathXArray::metrics(MathStyles st) const void MathXArray::metrics(MathStyles st) const
{ {
if (data_.empty()) {
mathed_char_dim(LM_TC_VAR, st, 'I', ascent_, descent_, width_);
return;
}
ascent_ = 0;
descent_ = 0;
width_ = 0;
style_ = st; style_ = st;
mathed_char_dim(LM_TC_VAR, st, 'I', ascent_, descent_, width_);
if (data_.empty())
return;
width_ = 0;
//lyxerr << "MathXArray::metrics(): '" << data_ << "'\n"; //lyxerr << "MathXArray::metrics(): '" << data_ << "'\n";
for (int pos = 0; pos < data_.size(); ++pos) { for (int pos = 0; pos < data_.size(); ++pos) {