...why were those `gadget:`

master
zetaPRIME 2022-03-20 05:16:51 -04:00
parent 987d22d332
commit e4475cbce0
2 changed files with 6 additions and 4 deletions

View File

@ -20,16 +20,17 @@ using namespace Xybrid::Audio;
#include "ui/gadgets/knobgadget.h"
using namespace Xybrid::UI;
#include "util/strings.h"
#include <cmath>
#include <QCborMap>
#define qs QStringLiteral
namespace {
bool _ = PluginRegistry::enqueueRegistration([] {
auto i = std::make_shared<PluginInfo>();
i->id = "gadget:delay";
i->id = "fx:delay";
i->oldIds = {"gadget:delay"};
i->displayName = "Delay";
i->category = "Effect";
i->createInstance = []{ return std::make_shared<Delay>(); };

View File

@ -45,7 +45,8 @@ using namespace Xybrid::UI;
namespace {
bool _ = PluginRegistry::enqueueRegistration([] {
auto i = std::make_shared<PluginInfo>();
i->id = "gadget:svf";
i->id = "fx:svf";
i->oldIds = {"gadget:svf"};
i->displayName = "Filter";
i->category = "Effect";
i->createInstance = []{ return std::make_shared<SVF>(); };