Browse Source

Fix default rack "skin" for a few plugins

tags/v2.3.1
falkTX 3 years ago
parent
commit
231143d495
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      source/frontend/carla_skin.py

+ 3
- 1
source/frontend/carla_skin.py View File

@@ -2060,7 +2060,9 @@ def getColorAndSkinStyle(host, pluginId):


# DISTRHO Plugins (needs to be last) # DISTRHO Plugins (needs to be last)
if pluginMaker.startswith("falkTX, ") or pluginMaker == "DISTRHO" or pluginLabel.startswith("http://distrho.sf.net/plugins/"): 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") return (colorCategory, "default")




Loading…
Cancel
Save