cosmetics

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19959 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2007-08-31 20:24:15 +00:00
parent 7bf090853f
commit c94eb3deeb

View File

@ -175,7 +175,7 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
using std::max;
autoOpen_ = mi.base.bv->cursor().isInside(this);
mi.base.textwidth -= (int) (1.5 * TEXT_TO_INSET_OFFSET);
mi.base.textwidth -= int(1.5 * TEXT_TO_INSET_OFFSET);
switch (geometry()) {
case NoButton:
@ -234,8 +234,8 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
}
dim.asc += TEXT_TO_INSET_OFFSET;
dim.des += TEXT_TO_INSET_OFFSET;
dim.wid += (int) (1.5 * TEXT_TO_INSET_OFFSET);
mi.base.textwidth += (int) (1.5 * TEXT_TO_INSET_OFFSET);
dim.wid += int(1.5 * TEXT_TO_INSET_OFFSET);
mi.base.textwidth += int(1.5 * TEXT_TO_INSET_OFFSET);
bool const changed = dim_ != dim;
dim_ = dim;
return changed;