We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db761ea commit 60f5437Copy full SHA for 60f5437
1 file changed
src/emc/usr_intf/gmoccapy/gmoccapy.py
@@ -2430,11 +2430,8 @@ def _show_error(self, error):
2430
self._on_play_sound(None, "alert")
2431
2432
def on_gremlin_gcode_error(self, widget, errortext):
2433
- if self.gcodeerror == errortext:
2434
- return
2435
- else:
2436
- self.gcodeerror = errortext
2437
- self.dialogs.warning_dialog(self, _("Important Warning"), errortext)
+ self.gcodeerror = errortext
+ self.dialogs.warning_dialog(self, _("Important Warning"), errortext)
2438
2439
2440
# =========================================================
0 commit comments