From b4206bd291953e534dddb813a5be18e5f1cf16b0 Mon Sep 17 00:00:00 2001 From: Colin Noga Date: Wed, 23 Nov 2011 08:31:56 -0600 Subject: Icons touchups --- Resources/Anm/Jump.png | Bin 1718 -> 2040 bytes Resources/Anm/JumpSand.png | Bin 2081 -> 2235 bytes Resources/Anm/JumpSnow.png | Bin 2038 -> 2200 bytes Resources/Anm/Run.png | Bin 1665 -> 1703 bytes Resources/Anm/Swim.png | Bin 1614 -> 2548 bytes src/editorui/paths.py | 6 ++++-- 6 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Resources/Anm/Jump.png b/Resources/Anm/Jump.png index adc12eb..55b19c0 100644 Binary files a/Resources/Anm/Jump.png and b/Resources/Anm/Jump.png differ diff --git a/Resources/Anm/JumpSand.png b/Resources/Anm/JumpSand.png index 4ddfc66..91ad3ed 100644 Binary files a/Resources/Anm/JumpSand.png and b/Resources/Anm/JumpSand.png differ diff --git a/Resources/Anm/JumpSnow.png b/Resources/Anm/JumpSnow.png index 5398c45..d4a7f57 100644 Binary files a/Resources/Anm/JumpSnow.png and b/Resources/Anm/JumpSnow.png differ diff --git a/Resources/Anm/Run.png b/Resources/Anm/Run.png index f2b06ad..5d40ebe 100644 Binary files a/Resources/Anm/Run.png and b/Resources/Anm/Run.png differ diff --git a/Resources/Anm/Swim.png b/Resources/Anm/Swim.png index aae1aef..bf56f5e 100644 Binary files a/Resources/Anm/Swim.png and b/Resources/Anm/Swim.png differ diff --git a/src/editorui/paths.py b/src/editorui/paths.py index d7a59be..ec98fb9 100644 --- a/src/editorui/paths.py +++ b/src/editorui/paths.py @@ -309,14 +309,14 @@ class KPEditorPath(QtGui.QGraphicsLineItem): self.moveSpeedSpinner.setSingleStep(0.05) self.moveSpeedSpinner.setValue(1.0) - TopLayout.addWidget(self.moveSpeedSpinner, 0, 0) + TopLayout.addWidget(self.moveSpeedSpinner, 1, 0) # Layer Combo Box self.linkedLayer = QtGui.QComboBox(self) self.linkedLayer.setModel(KP.map.layerModel) - TopLayout.addWidget(self.linkedLayer, 0, 1, 1, 3) + TopLayout.addWidget(self.linkedLayer, 1, 1, 1, 3) # Connections @@ -326,6 +326,8 @@ class KPEditorPath(QtGui.QGraphicsLineItem): self.linkedLayer.currentIndexChanged.connect(self.updateLinkLayer) # Layout + TopLayout.addWidget(QtGui.QLabel("Speed:"), 0, 0) + TopLayout.addWidget(QtGui.QLabel("Layer Shown on Unlock:"), 0, 1, 1, 3) Layout.addLayout(TopLayout, 0, 0, 1, 4) self.setLayout(Layout) -- cgit v1.2.3