mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Correct col spacing in Cases environment
This commit is contained in:
parent
d4b56646b4
commit
1840b5992c
@ -185,4 +185,10 @@ void InsetMathCases::validate(LaTeXFeatures & features) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int InsetMathCases::displayColSpace(col_type) const
|
||||||
|
{
|
||||||
|
return 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
} // namespace lyx
|
} // namespace lyx
|
||||||
|
@ -52,6 +52,8 @@ public:
|
|||||||
void validate(LaTeXFeatures & features) const;
|
void validate(LaTeXFeatures & features) const;
|
||||||
///
|
///
|
||||||
InsetCode lyxCode() const { return MATH_CASES_CODE; }
|
InsetCode lyxCode() const { return MATH_CASES_CODE; }
|
||||||
|
///
|
||||||
|
int displayColSpace(col_type) const;
|
||||||
private:
|
private:
|
||||||
virtual Inset * clone() const;
|
virtual Inset * clone() const;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user