diff --git a/src/Mod/Fem/Gui/Resources/Fem.qrc b/src/Mod/Fem/Gui/Resources/Fem.qrc index a73d3967c4..d4359877ac 100755 --- a/src/Mod/Fem/Gui/Resources/Fem.qrc +++ b/src/Mod/Fem/Gui/Resources/Fem.qrc @@ -7,6 +7,7 @@ icons/fem-add-material.svg icons/fem-add-part.svg icons/fem-analysis.svg + icons/fem-beam-rotation.svg icons/fem-beam-section.svg icons/fem-box.svg icons/fem-cfd-analysis.svg diff --git a/src/Mod/Fem/Gui/Resources/icons/fem-beam-rotation.svg b/src/Mod/Fem/Gui/Resources/icons/fem-beam-rotation.svg new file mode 100644 index 0000000000..cafbda47fc --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/icons/fem-beam-rotation.svg @@ -0,0 +1,575 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Bernd Hahnebach] + + + fem-beam-section + 2015-09-18 + http://www.freecadweb.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mod/Fem/PyGui/_ViewProviderFemElementRotation1D.py b/src/Mod/Fem/PyGui/_ViewProviderFemElementRotation1D.py index 87c2b94a40..883440b9ef 100644 --- a/src/Mod/Fem/PyGui/_ViewProviderFemElementRotation1D.py +++ b/src/Mod/Fem/PyGui/_ViewProviderFemElementRotation1D.py @@ -42,7 +42,7 @@ class _ViewProviderFemElementRotation1D: vobj.Proxy = self def getIcon(self): - return ":/icons/fem-beam-section.svg" + return ":/icons/fem-beam-rotation.svg" def attach(self, vobj): from pivy import coin diff --git a/src/Mod/Fem/femcommands/commands.py b/src/Mod/Fem/femcommands/commands.py index 9c9185d710..f716055f15 100644 --- a/src/Mod/Fem/femcommands/commands.py +++ b/src/Mod/Fem/femcommands/commands.py @@ -196,7 +196,7 @@ class _CommandFemElementRotation1D(CommandManager): "The Fem_ElementRotation1D command definition" def __init__(self): super(_CommandFemElementRotation1D, self).__init__() - self.resources = {'Pixmap': 'fem-beam-section', + self.resources = {'Pixmap': 'fem-beam-rotation', 'MenuText': QtCore.QT_TRANSLATE_NOOP("FEM_ElementRotation1D", "Beam rotation"), 'Accel': "C, R", 'ToolTip': QtCore.QT_TRANSLATE_NOOP("FEM_ElementRotation1D", "Creates a FEM beam rotation")}