From 60461d072497c456b10f2bc75fa4a261e9549113 Mon Sep 17 00:00:00 2001 From: Juan Pablo Caram Date: Wed, 4 Nov 2015 18:17:45 -0500 Subject: [PATCH] Fixed messages on drawing completion with spacebar. --- FlatCAMDraw.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FlatCAMDraw.py b/FlatCAMDraw.py index 05a90c5..29eb478 100644 --- a/FlatCAMDraw.py +++ b/FlatCAMDraw.py @@ -1011,6 +1011,7 @@ class FlatCAMDraw(QtCore.QObject): self.active_tool.make() if self.active_tool.complete: self.on_shape_complete() + self.app.info("Done.") return ### Abort the current action @@ -1037,12 +1038,14 @@ class FlatCAMDraw(QtCore.QObject): self.move_btn.setChecked(True) self.on_tool_select('move') self.active_tool.set_origin(self.snap(event.xdata, event.ydata)) + self.app.info("Click on target point.") ### Copy if event.key == 'c': self.copy_btn.setChecked(True) self.on_tool_select('copy') self.active_tool.set_origin(self.snap(event.xdata, event.ydata)) + self.app.info("Click on target point.") ### Snap if event.key == 'g':