diff options
author | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-23 08:31:56 -0600 |
---|---|---|
committer | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-23 08:31:56 -0600 |
commit | b4206bd291953e534dddb813a5be18e5f1cf16b0 (patch) | |
tree | 261d9981a63b0070a38db87721d317d4b3fda02d /src/editorui | |
parent | 69fa0ef1a241ae9609936def65f3168fee7e260e (diff) | |
download | koopatlas-b4206bd291953e534dddb813a5be18e5f1cf16b0.tar.gz koopatlas-b4206bd291953e534dddb813a5be18e5f1cf16b0.zip |
Icons touchups
Diffstat (limited to 'src/editorui')
-rw-r--r-- | src/editorui/paths.py | 6 |
1 files changed, 4 insertions, 2 deletions
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) |