From: Enrico Forestieri Date: Wed, 7 May 2014 18:18:14 +0000 (-0400) Subject: Fix problem with drawing of math backround with selections. X-Git-Tag: 2.2.0alpha1~1969 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3e681bea4fa3f0d24016187d9778ab8344b93592;p=features.git Fix problem with drawing of math backround with selections. --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index f7215e9210..eb11bc20ed 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -510,7 +510,7 @@ void InsetMathHull::drawBackground(PainterInfo & pi, int x, int y) const return; } pi.pain.fillRectangle(x + 1, y - dim.asc + 1, dim.wid - 2, - dim.asc + dim.des - 1, backgroundColor(pi)); + dim.asc + dim.des - 1, pi.backgroundColor(this)); }