diff options
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): |