X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FRenderButton.h;h=480effd16ace2ae931325c8a7bcc79ba202952da;hb=c1e10c71850adf8e5a19160e24e32c696aaf01a6;hp=5e6ad35a087374886b51b1a3a67e735bab66dc67;hpb=3f34ebbaf932ea645e584a17d643c9b7f19b2a86;p=lyx.git diff --git a/src/insets/RenderButton.h b/src/insets/RenderButton.h index 5e6ad35a08..480effd16a 100644 --- a/src/insets/RenderButton.h +++ b/src/insets/RenderButton.h @@ -33,7 +33,7 @@ public: virtual void draw(PainterInfo & pi, int x, int y) const; /// Provide the text for the button - void update(docstring const &, bool editable); + void update(docstring const &, bool editable, bool inherit_font); /// The "sensitive area" box, i.e., the button area Box box() const { return button_box_; } @@ -47,6 +47,7 @@ private: /// The stored data. docstring text_; bool editable_; + bool inherit_font_; Box button_box_; };