From b138166e0e1cd8494126424a39cbdcd8964ee54b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 14 Jan 2023 14:45:06 -0500 Subject: [PATCH] Allow plugins to add menu items to port context menu with PortWidget::appendContextMenu(). --- src/app/PortWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/PortWidget.cpp b/src/app/PortWidget.cpp index 091c288a..e7d613b6 100644 --- a/src/app/PortWidget.cpp +++ b/src/app/PortWidget.cpp @@ -307,6 +307,8 @@ void PortWidget::createContextMenu() { menu->addChild(item); } } + + appendContextMenu(menu); }