mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
Fix \vdots problem reported by Michael
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5710 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
97dedd97de
commit
f454da736f
@ -32,8 +32,10 @@ void MathDotsInset::metrics(MathMetricsInfo & mi) const
|
|||||||
dh_ = ascent() / 2;
|
dh_ = ascent() / 2;
|
||||||
else if (key_->name == "dotsc")
|
else if (key_->name == "dotsc")
|
||||||
dh_ = ascent() / 4;
|
dh_ = ascent() / 4;
|
||||||
else if (key_->name == "vdots")
|
else if (key_->name == "vdots") {
|
||||||
dim_.w /= 2;
|
dim_.w = (dim_.w / 2) + 1;
|
||||||
|
dh_ = ascent();
|
||||||
|
}
|
||||||
else if (key_->name == "ddots")
|
else if (key_->name == "ddots")
|
||||||
dh_ = ascent();
|
dh_ = ascent();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user