Skip to content

Commit

Permalink
FEM: Typo + move debug print to be the first command in calculixStarted
Browse files Browse the repository at this point in the history
Signed-off-by: Przemo Firszt <przemo@firszt.eu>
  • Loading branch information
PrzemoF authored and wwmayer committed Oct 19, 2015
1 parent 6116231 commit 23dd479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Fem/_JobControlTaskPanel.py
Expand Up @@ -113,9 +113,9 @@ def calculixError(self, error):
self.femConsoleMessage("CalculiX execute error: {}".format(error), "#FF0000")

def calculixStarted(self):
self.form.pb_run_ccx.setText("Break Calculix")
print ("calculixStarted()")
print (self.Calculix.state())
self.form.pb_run_ccx.setText("Break CalculiX")

def calculixStateChanged(self, newState):
if (newState == QtCore.QProcess.ProcessState.Starting):
Expand All @@ -137,7 +137,7 @@ def calculixFinished(self, exitCode):

self.femConsoleMessage("Calculix done!", "#00AA00")

self.form.pb_run_ccx.setText("Re-run Calculix")
self.form.pb_run_ccx.setText("Re-run CalculiX")
self.femConsoleMessage("Loading result sets...")
self.form.l_time.setText('Time: {0:4.1f}: '.format(time.time() - self.Start))
fea = FemTools()
Expand Down

0 comments on commit 23dd479

Please sign in to comment.