- changed the circle resolution back to the default of 16 since this value is good for fast rendering of Gerber files

- added a shortcut to select all apertures in the Gerber Editor
- other minor fixes
This commit is contained in:
Marius Stanciu
2021-09-28 05:25:34 +03:00
committed by Marius
parent d0ee5ea3fa
commit 8d8a522714
6 changed files with 91 additions and 25 deletions

View File

@@ -8228,7 +8228,8 @@ class App(QtCore.QObject):
self.log.debug("Recent items list has been populated.")
def on_properties_tab_click(self):
if self.ui.properties_scroll_area.widget().objectName() == 'default_properties':
tab_wdg = self.ui.properties_scroll_area.widget()
if tab_wdg and tab_wdg.objectName() == 'default_properties':
self.setup_default_properties_tab()
def setup_default_properties_tab(self):
@@ -9043,7 +9044,7 @@ class MenuFileHandlers(QtCore.QObject):
self.splash = self.app.splash
self.worker_task = self.app.worker_task
self.defaults = self.app.defaults
self.app_units = self.app.app_units
self.pagesize = {}
self.app.new_project_signal.connect(self.on_new_project_house_keeping)