Browse Source

Remove "v" from plugin update menu items.

tags/v2.0.0
Andrew Belt 2 years ago
parent
commit
842c12cdfe
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/app/MenuBar.cpp

+ 2
- 2
src/app/MenuBar.cpp View File

@@ -651,9 +651,9 @@ struct SyncUpdateItem : ui::MenuItem {
rightText = "";
plugin::Plugin* p = plugin::getExactPlugin(slug);
if (p) {
rightText += "v" + p->version + " → ";
rightText += p->version + " → ";
}
rightText += "v" + update.version;
rightText += update.version;
}
}



Loading…
Cancel
Save