From b14709b655130980199640501b2ccde472563161 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 27 Aug 2010 15:46:21 -0400 Subject: [PATCH] Add 'command stack' to list of ignored commands in propertyeditor.py --- hooke/ui/gui/panel/propertyeditor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hooke/ui/gui/panel/propertyeditor.py b/hooke/ui/gui/panel/propertyeditor.py index b991c81..ea865f4 100644 --- a/hooke/ui/gui/panel/propertyeditor.py +++ b/hooke/ui/gui/panel/propertyeditor.py @@ -41,8 +41,8 @@ def props_from_argument(argument, curves=None, playlists=None): :class:`Property`\s. """ type = argument.type - if type in ['driver', 'dict']: # intentionally not handled (yet) - return None + if type in ['driver', 'dict', 'command stack']: + return None # intentionally not handled (yet) count = argument.count if count == -1: count = 3 # HACK: should allow unlimited entries (somehow...) -- 2.26.2