From 9a2a2a8f82c3ec9f6eb86c677ff8ba4e7e4aa495 Mon Sep 17 00:00:00 2001 From: hemmer <915048+hemmer@users.noreply.github.com> Date: Sun, 21 Nov 2021 14:45:48 +0000 Subject: [PATCH] Muxlicer: fix tap tempo plugin.json - remove unsupported tag --- plugin.json | 4 ++-- src/Muxlicer.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/plugin.json b/plugin.json index 66bdcd8..3ca6b25 100644 --- a/plugin.json +++ b/plugin.json @@ -3,6 +3,7 @@ "version": "2.0.0", "license": "GPL-3.0-or-later", "name": "Befaco", + "brand": "Befaco", "author": "VCV, Ewan Hemingway", "authorEmail": "contact@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" ] }, diff --git a/src/Muxlicer.cpp b/src/Muxlicer.cpp index 0981ac9..8f24a0e 100644 --- a/src/Muxlicer.cpp +++ b/src/Muxlicer.cpp @@ -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(); } };