From 90f491491d59b7d28dc0934472d9a5d031b41a51 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sat, 22 Jun 2019 18:22:04 +0300 Subject: [PATCH] - moved Substract Tool from Menu -> Edit -> Conversions to Menu -> Tool --- FlatCAMApp.py | 5 ++--- README.md | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index cd7517fa..bf65867c 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -2108,11 +2108,10 @@ class App(QtCore.QObject): self.paste_tool.install(icon=QtGui.QIcon('share/solderpastebis32.png')) self.calculator_tool = ToolCalculator(self) - self.calculator_tool.install(icon=QtGui.QIcon('share/calculator24.png')) + self.calculator_tool.install(icon=QtGui.QIcon('share/calculator24.png'), separator=True) self.sub_tool = ToolSub(self) - self.sub_tool.install(icon=QtGui.QIcon('share/sub32.png'), pos=self.ui.menuedit_convert, - before=self.ui.menuedit_convert_sg2mg) + self.sub_tool.install(icon=QtGui.QIcon('share/sub32.png'), pos=self.ui.menutool, separator=True) self.move_tool = ToolMove(self) self.move_tool.install(icon=QtGui.QIcon('share/move16.png'), pos=self.ui.menuedit, diff --git a/README.md b/README.md index 0a6b6b89..8ee8af40 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ CAD program, and create G-Code for Isolation routing. - fixed bug in updating Grid values whenever toggling the FlatCAM units and the X, Y Grid values are linked, bugs which caused the Y value to be scaled incorrectly - set the decimals for Grid values to be set to 6 if the units of FlatCAM is INCH and to set to 4 if FlatCAM units are METRIC - updated translations -- updated the Russian translate from 51% complete to 69% complete using the Yandex translation engine +- updated the Russian translation from 51% complete to 69% complete using the Yandex translation engine - fixed recently introduced bug in milling drills/slots functions +- moved Substract Tool from Menu -> Edit -> Conversions to Menu -> Tool 20.06.2019