diff --git a/src/insets/InsetSpace.h b/src/insets/InsetSpace.h index 7e32dc7cb5..c4315a182f 100644 --- a/src/insets/InsetSpace.h +++ b/src/insets/InsetSpace.h @@ -139,6 +139,8 @@ public: /// bool hasSettings() const { return true; } /// + bool clickable(int, int) const { return true; } + /// InsetCode lyxCode() const { return SPACE_CODE; } /// is this an expandible space (rubber length)? bool isStretchableSpace() const; diff --git a/src/insets/InsetVSpace.h b/src/insets/InsetVSpace.h index 03e8d59b5e..e94ebcd91f 100644 --- a/src/insets/InsetVSpace.h +++ b/src/insets/InsetVSpace.h @@ -32,6 +32,8 @@ public: /// bool hasSettings() const { return true; } /// + bool clickable(int, int) const { return true; } + /// std::string contextMenuName() const; /// static void string2params(std::string const &, VSpace &);