--- a/controls/VariablePanel.py Thu Dec 05 18:00:15 2013 +0100
+++ b/controls/VariablePanel.py Thu Dec 05 18:08:31 2013 +0100
@@ -623,7 +623,8 @@
def IsFunctionBlockType(self, name):
- if self.ElementType != "function" and self.BodyType in ["ST", "IL"]:
+ if (isinstance(name, TupleType) or + self.ElementType != "function" and self.BodyType in ["ST", "IL"]): return self.Controler.GetBlockType(name, debug=self.Debug) is not None