Просмотр исходного кода

- moved Substract Tool from Menu -> Edit -> Conversions to Menu -> Tool

Marius Stanciu 6 лет назад
Родитель
Сommit
90f491491d
2 измененных файлов с 4 добавлено и 4 удалено
  1. 2 3
      FlatCAMApp.py
  2. 2 1
      README.md

+ 2 - 3
FlatCAMApp.py

@@ -2108,11 +2108,10 @@ class App(QtCore.QObject):
         self.paste_tool.install(icon=QtGui.QIcon('share/solderpastebis32.png'))
         self.paste_tool.install(icon=QtGui.QIcon('share/solderpastebis32.png'))
 
 
         self.calculator_tool = ToolCalculator(self)
         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 = 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 = ToolMove(self)
         self.move_tool.install(icon=QtGui.QIcon('share/move16.png'), pos=self.ui.menuedit,
         self.move_tool.install(icon=QtGui.QIcon('share/move16.png'), pos=self.ui.menuedit,

+ 2 - 1
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
 - 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
 - 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 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
 - fixed recently introduced bug in milling drills/slots functions
+- moved Substract Tool from Menu -> Edit -> Conversions to Menu -> Tool
 
 
 20.06.2019
 20.06.2019