diff options
Diffstat (limited to 'src/gui/GraphCanvas.hpp')
-rw-r--r-- | src/gui/GraphCanvas.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/GraphCanvas.hpp b/src/gui/GraphCanvas.hpp index 8970a88a..b055d530 100644 --- a/src/gui/GraphCanvas.hpp +++ b/src/gui/GraphCanvas.hpp @@ -63,6 +63,7 @@ public: bool show_port_names() const { return _show_port_names; } void add_plugin(SPtr<Client::PluginModel> pm); + void remove_plugin(const Raul::URI& uri); void add_block(SPtr<const Client::BlockModel> bm); void remove_block(SPtr<const Client::BlockModel> bm); void add_port(SPtr<const Client::PortModel> pm); @@ -149,6 +150,7 @@ private: bool _human_names; bool _show_port_names; + bool _menu_dirty; }; } // namespace GUI |