diff options
author | Treeki <treeki@gmail.com> | 2012-08-29 19:40:50 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-08-29 19:40:50 +0200 |
commit | 7e177703c0380ebf9d6afe9f27df4db24903d6ad (patch) | |
tree | 088c0237035b4cc684150e295a5412badf757aec /src/editorui/doodads.py | |
parent | a0fb27c3f890aec576e09754b2e008459956e1f7 (diff) | |
parent | b7ae37e17b8704a6ba3779625c65d1bb05bec251 (diff) | |
download | koopatlas-7e177703c0380ebf9d6afe9f27df4db24903d6ad.tar.gz koopatlas-7e177703c0380ebf9d6afe9f27df4db24903d6ad.zip |
Merge branch 'master' of tsn:Koopatlas ARGH
Diffstat (limited to '')
-rw-r--r-- | src/editorui/doodads.py | 6 |
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() |