]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_substackinset.C
Change the color of the background widget to red.
[lyx.git] / src / mathed / math_substackinset.C
index 4767f3402e6eced3d7a3b8b423664ac035868047..696a9986e9559d52964832ff468127a53d71f6bc 100644 (file)
@@ -33,19 +33,17 @@ void MathSubstackInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        if (mi.base.style == LM_ST_DISPLAY) {
                StyleChanger dummy(mi.base, LM_ST_TEXT);
-               MathGridInset::metrics(mi);
+               MathGridInset::metrics(mi, dim);
        } else {
-               MathGridInset::metrics(mi);
+               MathGridInset::metrics(mi, dim);
        }
-       metricsMarkers();
-       dim = dim_;
+       dim_ = dim;
 }
 
 
 void MathSubstackInset::draw(PainterInfo & pi, int x, int y) const
 {
        MathGridInset::draw(pi, x + 1, y);
-       drawMarkers(pi, x, y);
 }