We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea840bc commit a47c9b7Copy full SHA for a47c9b7
src/Mod/Fem/femexamples/examplesgui.py
@@ -236,10 +236,10 @@ def run(self):
236
# if done this way the Python commands are printed in Python console
237
FreeCADGui.doCommand("from femexamples.manager import run_example")
238
if solver is not None:
239
- FreeCADGui.doCommand("run_example(\"{}\", solver=\"{}\")"
+ FreeCADGui.doCommand("run_example(\"{}\", solver=\"{}\", run_solver=True)"
240
.format(str(example), str(solver)))
241
else:
242
- FreeCADGui.doCommand("run_example(\"{}\")".format(str(example)))
+ FreeCADGui.doCommand("run_example(\"{}\", run_solver=True)".format(str(example)))
243
QtGui.QApplication.restoreOverrideCursor()
244
245
def enable_buttons(self):
0 commit comments