diff --git a/flatcamEditors/FlatCAMExcEditor.py b/flatcamEditors/FlatCAMExcEditor.py index cbcd55b8..30d5182b 100644 --- a/flatcamEditors/FlatCAMExcEditor.py +++ b/flatcamEditors/FlatCAMExcEditor.py @@ -3438,8 +3438,8 @@ class FlatCAMExcEditor(QtCore.QObject): self.pos = (self.pos[0], self.pos[1]) if event.button == 1: - self.app.ui.rel_position_label.setText("Dx: %.4f   Dy: " - "%.4f    " % (0, 0)) + # self.app.ui.rel_position_label.setText("Dx: %.4f   Dy: " + # "%.4f    " % (0, 0)) # Selection with left mouse button if self.active_tool is not None and event.button == 1: diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py index c8ded16a..8c7055d8 100644 --- a/flatcamEditors/FlatCAMGeoEditor.py +++ b/flatcamEditors/FlatCAMGeoEditor.py @@ -4161,8 +4161,8 @@ class FlatCAMGeoEditor(QtCore.QObject): self.pos = (self.pos[0], self.pos[1]) if event.button == 1: - self.app.ui.rel_position_label.setText("Dx: %.4f   Dy: " - "%.4f    " % (0, 0)) + # self.app.ui.rel_position_label.setText("Dx: %.4f   Dy: " + # "%.4f    " % (0, 0)) modifiers = QtWidgets.QApplication.keyboardModifiers() # If the SHIFT key is pressed when LMB is clicked then the coordinates are copied to clipboard diff --git a/flatcamTools/ToolDistance.py b/flatcamTools/ToolDistance.py index 1e61d782..3d73e245 100644 --- a/flatcamTools/ToolDistance.py +++ b/flatcamTools/ToolDistance.py @@ -469,9 +469,9 @@ class Distance(FlatCAMTool): # Reset here the relative coordinates so there is a new reference on the click position if self.rel_point1 is None: - self.app.ui.rel_position_label.setText("Dx: %.*f   Dy: " - "%.*f    " % - (self.decimals, 0.0, self.decimals, 0.0)) + # self.app.ui.rel_position_label.setText("Dx: %.*f   Dy: " + # "%.*f    " % + # (self.decimals, 0.0, self.decimals, 0.0)) self.rel_point1 = pos else: self.rel_point2 = copy(self.rel_point1) @@ -510,11 +510,11 @@ class Distance(FlatCAMTool): pass self.total_distance_entry.set_value('%.*f' % (self.decimals, abs(d))) - self.app.ui.rel_position_label.setText( - "Dx: {}   Dy: {}    ".format( - '%.*f' % (self.decimals, pos[0]), '%.*f' % (self.decimals, pos[1]) - ) - ) + # self.app.ui.rel_position_label.setText( + # "Dx: {}   Dy: {}    ".format( + # '%.*f' % (self.decimals, pos[0]), '%.*f' % (self.decimals, pos[1]) + # ) + # ) self.tool_done = True self.deactivate_measure_tool() @@ -562,11 +562,11 @@ class Distance(FlatCAMTool): dx = pos[0] dy = pos[1] - self.app.ui.rel_position_label.setText( - "Dx: {}   Dy: {}    ".format( - '%.*f' % (self.decimals, dx), '%.*f' % (self.decimals, dy) - ) - ) + # self.app.ui.rel_position_label.setText( + # "Dx: {}   Dy: {}    ".format( + # '%.*f' % (self.decimals, dx), '%.*f' % (self.decimals, dy) + # ) + # ) # update utility geometry if len(self.points) == 1: