]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/CommandInset.cpp
fix off-by-two drawing error
[lyx.git] / src / mathed / CommandInset.cpp
index 7c24458cf557dbab919f6d65ca3ed087de53193b..bd1a1b2dd78878f57d89359507bfe5e1dc36bfc3 100644 (file)
@@ -23,8 +23,9 @@ using namespace std;
 namespace lyx {
 
 
-CommandInset::CommandInset(docstring const & name)
-       : InsetMathNest(2), name_(name), set_label_(false)
+CommandInset::CommandInset(docstring const & name, bool needs_math_mode)
+       : InsetMathNest(2), name_(name), needs_math_mode_(needs_math_mode),
+         set_label_(false)
 {
        lock_ = true;
 }
@@ -64,6 +65,7 @@ void CommandInset::draw(PainterInfo & pi, int x, int y) const
 
 void CommandInset::write(WriteStream & os) const
 {
+       MathEnsurer ensurer(os, needs_math_mode_);
        os << '\\' << name_.c_str();
        if (cell(1).size())
                os << '[' << cell(1) << ']';