Skip to content

Commit 34672df

Browse files
committed
gmoccapy: Fix 'avoid using HALUI pin inside Gmoccapy'
1 parent 7ab1b6b commit 34672df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/emc/usr_intf/gmoccapy/gmoccapy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2630,7 +2630,7 @@ def _periodic(self):
26302630

26312631
# every 1 second this gets called
26322632
def _periodic_1s(self):
2633-
if self.GSTAT.is_auto_running:
2633+
if self.GSTAT.is_auto_running() and not self.GSTAT.is_auto_paused():
26342634
self.elapsed_time_run += 1
26352635
self._update_progressbar_text()
26362636
return True

0 commit comments

Comments
 (0)