From 46507df2de36831c8768d385f7cde0babac98a7a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 3 Feb 2025 14:29:35 -0700 Subject: [PATCH] expose Gtk::Menu member of ArdourDropdown --- libs/widgets/widgets/ardour_dropdown.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/widgets/widgets/ardour_dropdown.h b/libs/widgets/widgets/ardour_dropdown.h index def080a1d2..9247b544a1 100644 --- a/libs/widgets/widgets/ardour_dropdown.h +++ b/libs/widgets/widgets/ardour_dropdown.h @@ -49,6 +49,7 @@ public: void disable_scrolling(); Gtk::Menu_Helpers::MenuList& items () { return _menu.items (); } + Gtk::Menu& menu () { return _menu; } void append_text_item (std::string const& text); void set_active (std::string const& text);