diff --git a/src/Mod/Fem/Gui/Resources/Fem.qrc b/src/Mod/Fem/Gui/Resources/Fem.qrc index f86bd3c1c1..c09d211710 100755 --- a/src/Mod/Fem/Gui/Resources/Fem.qrc +++ b/src/Mod/Fem/Gui/Resources/Fem.qrc @@ -10,6 +10,7 @@ icons/FEM_ConstraintBearing.svg + icons/FEM_ConstraintBodyHeatSource.svg icons/FEM_ConstraintCentrif.svg icons/FEM_ConstraintContact.svg icons/FEM_ConstraintDisplacement.svg diff --git a/src/Mod/Fem/Gui/Resources/icons/FEM_ConstraintBodyHeatSource.svg b/src/Mod/Fem/Gui/Resources/icons/FEM_ConstraintBodyHeatSource.svg new file mode 100644 index 0000000000..53628c88a4 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/icons/FEM_ConstraintBodyHeatSource.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [vdwalts] + + + fem-constraint-heatflux + 2016-08-01 + 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/femcommands/commands.py b/src/Mod/Fem/femcommands/commands.py index b9d0665e46..581b81c02f 100644 --- a/src/Mod/Fem/femcommands/commands.py +++ b/src/Mod/Fem/femcommands/commands.py @@ -177,7 +177,7 @@ class _ConstraintBodyHeatSource(CommandManager): def __init__(self): super(_ConstraintBodyHeatSource, self).__init__() - self.pixmap = "FEM_ConstraintHeatflux" # the heatflux icon is used + self.pixmap = "FEM_ConstraintBodyHeatSource" self.menutext = Qt.QT_TRANSLATE_NOOP( "FEM_ConstraintBodyHeatSource", "Constraint body heat source" diff --git a/src/Mod/Fem/femviewprovider/view_constraint_bodyheatsource.py b/src/Mod/Fem/femviewprovider/view_constraint_bodyheatsource.py index 9d1b511a19..ed58a56030 100644 --- a/src/Mod/Fem/femviewprovider/view_constraint_bodyheatsource.py +++ b/src/Mod/Fem/femviewprovider/view_constraint_bodyheatsource.py @@ -36,4 +36,4 @@ from . import view_base_femconstraint class VPConstraintBodyHeatSource(view_base_femconstraint.VPBaseFemConstraint): def getIcon(self): - return ":/icons/FEM_ConstraintHeatflux.svg" # the heatflux icon is used + return ":/icons/FEM_ConstraintBodyHeatSource.svg"