]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetcommand.C
index 66d049448ce619c5da30b5c7054951ed038cc571..ff815add1f2b39e8a2fa6849190332b0cdc559c5 100644 (file)
@@ -33,7 +33,7 @@ InsetCommand::InsetCommand(InsetCommandParams const & p,
                           string const & mailer_name)
        : p_(p.getCmdName(), p.getContents(), p.getOptions(), p.getSecOptions()),
          mailer_name_(mailer_name),
-         set_label_(false)
+         updateButtonLabel_(true)
 {}
 
 
@@ -46,8 +46,8 @@ InsetCommand::~InsetCommand()
 
 void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       if (!set_label_) {
-               set_label_ = true;
+       if (updateButtonLabel_) {
+               updateButtonLabel_ = false;
                button_.update(getScreenLabel(*mi.base.bv->buffer()),
                               editable() != NOT_EDITABLE);
        }
@@ -66,7 +66,7 @@ void InsetCommand::draw(PainterInfo & pi, int x, int y) const
 void InsetCommand::setParams(InsetCommandParams const & p)
 {
        p_ = p;
-       set_label_ = false;
+       updateButtonLabel_ = true;
 }
 
 
@@ -103,18 +103,16 @@ void InsetCommand::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
        case LFUN_INSET_REFRESH:
-               set_label_ = false;
+               updateButtonLabel_ = true;
                break;
 
        case LFUN_INSET_MODIFY: {
                InsetCommandParams p;
                InsetCommandMailer::string2params(mailer_name_, cmd.argument, p);
-               if (p.getCmdName().empty()) {
-                       cur.undispatched();
-               } else {
+               if (p.getCmdName().empty())
+                       cur.noUpdate();
+               else
                        setParams(p);
-                       cur.bv().update();
-               }
                break;
        }