diff options
Diffstat (limited to 'src/gui/PortMenu.hpp')
-rw-r--r-- | src/gui/PortMenu.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/PortMenu.hpp b/src/gui/PortMenu.hpp index c3460a2a..db567980 100644 --- a/src/gui/PortMenu.hpp +++ b/src/gui/PortMenu.hpp @@ -41,7 +41,7 @@ public: void init(App& app, SPtr<const Client::PortModel> port, - bool is_graph_port = false); + bool internal_graph_port = false); private: void on_menu_disconnect(); @@ -56,7 +56,8 @@ private: Gtk::MenuItem* _reset_range_menuitem; Gtk::MenuItem* _expose_menuitem; - bool _is_graph_port; + /// True iff this is a (flipped) port on a GraphPortModule in its graph + bool _internal_graph_port; }; } // namespace GUI |