From: W. Trevor King Date: Fri, 27 Aug 2010 19:46:21 +0000 (-0400) Subject: Add 'command stack' to list of ignored commands in propertyeditor.py X-Git-Url: http://git.tremily.us/?p=hooke.git;a=commitdiff_plain;h=b14709b655130980199640501b2ccde472563161 Add 'command stack' to list of ignored commands in propertyeditor.py --- 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...)