Merged marius_stanciu/flatcam_beta/Beta_8.994 into Beta_unstable

This commit is contained in:
Marius Stanciu 2020-10-27 17:41:10 +02:00
commit d899e5edc8
20 changed files with 4431 additions and 4474 deletions

View File

@ -17,6 +17,7 @@ CHANGELOG for FlatCAM beta
- fixed a bug due of recent chagnes in FileMenuHandlers class
- fixed an issue in Tools Database (ToolsDB2 class) that did not made the Tab name in Red color when adding/deleting a tool by using the context menu
- optimized the Tools Database
- small string change
26.10.2020

View File

@ -625,7 +625,7 @@ class MainGUI(QtWidgets.QMainWindow):
# ########################################################################
# ########################## GEOMETRY EDITOR # ###########################
# ########################################################################
self.geo_editor_menu = QtWidgets.QMenu(">Geo Editor<")
self.geo_editor_menu = QtWidgets.QMenu('>%s<' % _('Geo Editor'))
self.menu.addMenu(self.geo_editor_menu)
self.geo_add_circle_menuitem = self.geo_editor_menu.addAction(
@ -700,7 +700,7 @@ class MainGUI(QtWidgets.QMainWindow):
# ########################################################################
# ########################## EXCELLON Editor # ###########################
# ########################################################################
self.exc_editor_menu = QtWidgets.QMenu(_(">Excellon Editor<"))
self.exc_editor_menu = QtWidgets.QMenu('>%s<' % _('Excellon Editor'))
self.menu.addMenu(self.exc_editor_menu)
self.exc_add_array_drill_menuitem = self.exc_editor_menu.addAction(
@ -739,7 +739,7 @@ class MainGUI(QtWidgets.QMainWindow):
# ########################################################################
# ########################## GERBER Editor # #############################
# ########################################################################
self.grb_editor_menu = QtWidgets.QMenu(_(">Gerber Editor<"))
self.grb_editor_menu = QtWidgets.QMenu('>%s<' % _('Gerber Editor'))
self.menu.addMenu(self.grb_editor_menu)
self.grb_add_pad_menuitem = self.grb_editor_menu.addAction(

View File

@ -401,7 +401,6 @@ class AppObject(QtCore.QObject):
name=str(obj.options['name']), tx=_("created/selected"))
)
# ############################################################################################################
# Set the colors for the objects that have geometry
# ############################################################################################################
@ -439,7 +438,7 @@ class AppObject(QtCore.QObject):
# #############################################################################################################
# update the SHELL auto-completer model with the name of the new object
# #############################################################################################################
self.app.shell._edit.set_model_data(self.app.myKeywords)
self.app.shell.command_line().set_model_data(self.app.myKeywords)
if auto_select or self.app.ui.notebook.currentWidget() is self.app.ui.properties_tab:
# select the just opened object but deselect the previous ones

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff