diff options
author | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-03 00:19:43 -0500 |
---|---|---|
committer | Colin Noga <Tempus@Spectrum-Song.local> | 2011-11-03 00:19:43 -0500 |
commit | 7635775ee641395eca839bf135ae29fbc2f64b23 (patch) | |
tree | 7f4b00621e08cf5187a6b08fe3c16400c57d9a1e /src/ui.py | |
parent | 870cf5ad6f121e3a0f69c7f1645dad59eded416b (diff) | |
download | koopatlas-7635775ee641395eca839bf135ae29fbc2f64b23.tar.gz koopatlas-7635775ee641395eca839bf135ae29fbc2f64b23.zip |
Fixed your problem by moving the import. Too much cross importing for my blood.
Diffstat (limited to '')
-rw-r--r-- | src/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,11 +4,11 @@ from editorui import * class KPLayerList(QtGui.QWidget): class LayerModel(QtCore.QAbstractListModel): + def headerData(self, section, orientation, role = Qt.DisplayRole): return 'Layer' def rowCount(self, parent): - print globals().keys() return len(KP.map.layers) def data(self, index, role = Qt.DisplayRole): |