Browse Source

Add "Version: " to version item in Model context menu.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
09e68ac26b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/plugin/Model.cpp

+ 1
- 1
src/plugin/Model.cpp View File

@@ -101,7 +101,7 @@ void Model::appendContextMenu(ui::Menu* menu) {
}, plugin->pluginUrl == ""));

// version
menu->addChild(createMenuLabel(plugin->version));
menu->addChild(createMenuLabel("Version: " + plugin->version));

// author
if (plugin->author != "") {


Loading…
Cancel
Save