Correct col spacing in Cases environment

This commit is contained in:
Guillaume Munch 2016-04-08 20:24:12 +02:00 committed by Richard Heck
parent d4b56646b4
commit 1840b5992c
2 changed files with 8 additions and 0 deletions

View File

@ -185,4 +185,10 @@ void InsetMathCases::validate(LaTeXFeatures & features) const
}
int InsetMathCases::displayColSpace(col_type) const
{
return 20;
}
} // namespace lyx

View File

@ -52,6 +52,8 @@ public:
void validate(LaTeXFeatures & features) const;
///
InsetCode lyxCode() const { return MATH_CASES_CODE; }
///
int displayColSpace(col_type) const;
private:
virtual Inset * clone() const;
};