Browse Source

Merge branch 'v2' of github.com:VCVRack/Befaco into v2

tags/v2.1.0
Andrew Belt 3 years ago
parent
commit
ec406ce181
2 changed files with 4 additions and 3 deletions
  1. +2
    -2
      plugin.json
  2. +2
    -1
      src/Muxlicer.cpp

+ 2
- 2
plugin.json View File

@@ -3,6 +3,7 @@
"version": "2.0.0",
"license": "GPL-3.0-or-later",
"name": "Befaco",
"brand": "Befaco",
"author": "VCV, Ewan Hemingway",
"authorEmail": "support@vcvrack.com",
"pluginUrl": "https://vcvrack.com/Befaco",
@@ -199,8 +200,7 @@
"modularGridUrl": "https://www.modulargrid.net/e/befaco-stmix-",
"tags": [
"Hardware clone",
"Mixer",
"Stereo",
"Mixer",
"Polyphonic"
]
},


+ 2
- 1
src/Muxlicer.cpp View File

@@ -907,8 +907,9 @@ struct MuxlicerWidget : ModuleWidget {
struct TapTempoItem : MenuItem {
Muxlicer* module;
void onAction(const event::Action& e) override {
module->tapped = true;
e.consume(NULL);
module->tapped = true;
e.unconsume();
}
};



Loading…
Cancel
Save