Draft: Added icons to select plane buttons

This commit is contained in:
Yorik van Havre
2017-06-15 18:26:57 -03:00
parent 294551a2fb
commit e02430f5bf

View File

@@ -478,11 +478,11 @@ class DraftToolBar:
self.wipeButton = self._pushbutton("wipeButton", self.layout, icon='Draft_Wipe')
self.orientWPButton = self._pushbutton("orientWPButton", self.layout, icon='Draft_SelectPlane')
self.selectButton = self._pushbutton("selectButton", self.layout, icon='view-select')
self.xyButton = self._pushbutton("xyButton", self.layout)
self.xzButton = self._pushbutton("xzButton", self.layout)
self.yzButton = self._pushbutton("yzButton", self.layout)
self.currentViewButton = self._pushbutton("view", self.layout)
self.resetPlaneButton = self._pushbutton("none", self.layout)
self.xyButton = self._pushbutton("xyButton", self.layout,icon="view-top")
self.xzButton = self._pushbutton("xzButton", self.layout,icon="view-front")
self.yzButton = self._pushbutton("yzButton", self.layout,icon="view-right")
self.currentViewButton = self._pushbutton("view", self.layout,icon="view-isometric")
self.resetPlaneButton = self._pushbutton("none", self.layout,icon="view-axonometric")
self.isCopy = self._checkbox("isCopy",self.layout,checked=False)
gl = QtGui.QHBoxLayout()
self.layout.addLayout(gl)