From 231143d4955b0d5ce48b319f0286502fed38cd42 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 28 Jun 2021 20:30:07 +0100 Subject: [PATCH] Fix default rack "skin" for a few plugins --- source/frontend/carla_skin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/frontend/carla_skin.py b/source/frontend/carla_skin.py index 4c3133cd0..62e2bd0e5 100644 --- a/source/frontend/carla_skin.py +++ b/source/frontend/carla_skin.py @@ -2060,7 +2060,9 @@ def getColorAndSkinStyle(host, pluginId): # DISTRHO Plugins (needs to be last) if pluginMaker.startswith("falkTX, ") or pluginMaker == "DISTRHO" or pluginLabel.startswith("http://distrho.sf.net/plugins/"): - return (colorNone, pluginLabel.replace("http://distrho.sf.net/plugins/","")) + skinStyle = pluginLabel.replace("http://distrho.sf.net/plugins/","") + if skinStyle in ("3bandeq", "nekobi"): + return (colorNone, skinStyle) return (colorCategory, "default")