From bb7c96cc1f24f4526faca03711ef70a4f5e4081f Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 3 Feb 2014 05:42:02 +0000 Subject: [PATCH] Don't show disable parameters --- source/carla_widgets.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/carla_widgets.py b/source/carla_widgets.py index 416010749..1059bc254 100755 --- a/source/carla_widgets.py +++ b/source/carla_widgets.py @@ -712,6 +712,8 @@ class PluginEdit(QDialog): if paramData['type'] not in (PARAMETER_INPUT, PARAMETER_OUTPUT): continue + if (paramData['hints'] & PARAMETER_IS_ENABLED) == 0: + continue parameter = { 'type': paramData['type'],