Browse Source

Separate module name and brand label in context menu.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
9f2dce2124
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/app/ModuleWidget.cpp

+ 2
- 1
src/app/ModuleWidget.cpp View File

@@ -921,7 +921,8 @@ void ModuleWidget::createContextMenu() {
WeakPtr<ModuleWidget> 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) {


Loading…
Cancel
Save