fix some conversion

This commit is contained in:
chrys 2018-05-29 19:33:36 +02:00
parent 61cb242783
commit 52bc162b10

View File

@ -110,10 +110,8 @@ class attributeManager():
cursorPos = cursor.copy() cursorPos = cursor.copy()
try: try:
attribute = self.getAttributeByXY( cursorPos['x'], cursorPos['y']) attribute = self.getAttributeByXY( cursorPos['x'], cursorPos['y'])
print(attribute)
if isinstance(attribute, tuple): if self.isDefaultAttribute(attribute):
attribute = list(attribute)
if self.isDefaultAttribute(attribute):
return False return False
if update: if update:
self.setLastCursorAttribute(attribute) self.setLastCursorAttribute(attribute)