]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetText.h
Some things did not need to be mutable after all
[lyx.git] / src / insets / InsetText.h
index 3718e1d1d3e948815c29dd2b415a8f04ef705686..28340193c7705d814cf5e8f6f096258e9df9bf46 100644 (file)
@@ -63,8 +63,8 @@ public:
        bool editable() const { return true; }
        ///
        bool canTrackChanges() const { return true; }
-       ///
-       bool canPaintChange(BufferView const &) const { return false; }
+       /// Rely on RowPainter to draw the cue of inline insets.
+       bool canPaintChange(BufferView const &) const { return allowMultiPar(); }
        ///
        InsetText * asInsetText() { return this; }
        ///
@@ -232,7 +232,7 @@ private:
        ///
        ColorCode frame_color_;
        ///
-       mutable Text text_;
+       Text text_;
 };