summaryrefslogtreecommitdiff
path: root/src/editorui/doodads.py
diff options
context:
space:
mode:
authorColin Noga <Tempus@chronometry.ca>2012-08-28 13:02:14 -0500
committerColin Noga <Tempus@chronometry.ca>2012-08-28 13:02:14 -0500
commitfc9ba20ea4446049ebf68e1e9b9dfd77352cedd2 (patch)
treeade73af132c8d413ef5e93d97d55c0781787f4ed /src/editorui/doodads.py
parent03cd34aba4e4184142c025fe7cdcb9e4e0a5d7ab (diff)
downloadkoopatlas-fc9ba20ea4446049ebf68e1e9b9dfd77352cedd2.tar.gz
koopatlas-fc9ba20ea4446049ebf68e1e9b9dfd77352cedd2.zip
export batch fixed, checkbox for secret added
Diffstat (limited to 'src/editorui/doodads.py')
-rw-r--r--src/editorui/doodads.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/editorui/doodads.py b/src/editorui/doodads.py
index bdba4d4..7e150cd 100644
--- a/src/editorui/doodads.py
+++ b/src/editorui/doodads.py
@@ -47,7 +47,8 @@ class KPEditorDoodad(KPEditorItem):
elif isinstance(thong, float):
editWidget = QtGui.QDoubleSpinBox(parent)
editWidget.setSingleStep(0.05)
- editWidget.setRange(-10000.0, 10000.0)
+ editWidget.setDecimals(2)
+ editWidget.setRange(-99999.0, 99999.0)
return editWidget
else:
@@ -313,8 +314,6 @@ class KPEditorDoodad(KPEditorItem):
model = self.menuWidget.model
rows = model.rowCount()
- print 'Resolving'
-
for x in xrange(rows):
rowList = []
@@ -330,7 +329,6 @@ class KPEditorDoodad(KPEditorItem):
anmList.append(rowList)
- print anmList
doodad.animations = anmList
doodad.setupAnimations()