diff options
Diffstat (limited to 'src/ui.py')
| -rw-r--r-- | src/ui.py | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -30,9 +30,9 @@ class KPLayerList(QtGui.QWidget):  	def setupToolbar(self, tb): -		self.actAddTile = tb.addAction(QtGui.QIcon(), 'T+', self.addTileLayer) -		self.actAddDoodad = tb.addAction(QtGui.QIcon(), 'D+', self.addDoodadLayer) -		self.actRemove = tb.addAction(QtGui.QIcon(), 'Remove', self.removeLayer) +		self.actAddTile = tb.addAction(KP.icon('LayerNewTile'), 'Add Tile Layer', self.addTileLayer) +		self.actAddDoodad = tb.addAction(KP.icon('LayerNewObjects'), 'Add Doodad Layer', self.addDoodadLayer) +		self.actRemove = tb.addAction(KP.icon('LayerRemove'), 'Remove', self.removeLayer)  		self.actMoveUp = tb.addAction(QtGui.QIcon(), 'Move Up', self.moveUp)  		self.actMoveDown = tb.addAction(QtGui.QIcon(), 'Move Down', self.moveDown)  | 
