From 9f2dce21248d0c1d273ea489d5ec39404dddd5f0 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 4 Aug 2021 14:50:49 -0400 Subject: [PATCH] Separate module name and brand label in context menu. --- src/app/ModuleWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/ModuleWidget.cpp b/src/app/ModuleWidget.cpp index 2f3f2ff3..424455d4 100644 --- a/src/app/ModuleWidget.cpp +++ b/src/app/ModuleWidget.cpp @@ -921,7 +921,8 @@ void ModuleWidget::createContextMenu() { WeakPtr weakThis = this; // Brand and module name - menu->addChild(createMenuLabel(model->plugin->brand + " " + model->name)); + menu->addChild(createMenuLabel(model->name)); + menu->addChild(createMenuLabel(model->plugin->brand)); // Info menu->addChild(createSubmenuItem("Info", [=](ui::Menu* menu) {