]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_boxinset.C
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_boxinset.C
index b2ed64015f875667382793ff64fffec246bb6e15..8065cd136dc16351d3b7748feec6cb69942f8130 100644 (file)
@@ -5,13 +5,11 @@
 #endif
 
 #include "math_boxinset.h"
-#include "support/LOstream.h"
-#include "debug.h"
-#include "Painter.h"
-#include "math_cursor.h"
+#include "math_support.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
+
 MathBoxInset::MathBoxInset(string const & name)
        : MathGridInset(1, 1), name_(name)
 {}
@@ -46,8 +44,5 @@ void MathBoxInset::rebreak()
 void MathBoxInset::draw(Painter & pain, int x, int y) const
 {
        MathGridInset::draw(pain, x, y);
-       if (mathcursor && mathcursor->isInside(this)) {
-               pain.rectangle(x - 1, y - ascent() - 1, width(), height(),
-                       LColor::mathframe);
-       }
+       mathed_draw_framebox(pain, x, y, this);
 }