diff --git a/src/Mod/Draft/DraftGui.py b/src/Mod/Draft/DraftGui.py index 4f438ba364..bd6745abfb 100644 --- a/src/Mod/Draft/DraftGui.py +++ b/src/Mod/Draft/DraftGui.py @@ -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)