From e02430f5bfea8188027b323811f0eb20bc3d828f Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Thu, 15 Jun 2017 18:26:57 -0300 Subject: [PATCH] Draft: Added icons to select plane buttons --- src/Mod/Draft/DraftGui.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)