- grid snap toolbar is now always active

This commit is contained in:
Marius Stanciu 2020-05-17 19:16:49 +03:00
parent 18e128c57b
commit 9a53edd017
2 changed files with 8 additions and 4 deletions

View File

@ -15,6 +15,7 @@ CHANGELOG for FlatCAM beta
- fixed the workspace being always A4 - fixed the workspace being always A4
- added a label in the status bar to show if the workplace is active and what size it is - added a label in the status bar to show if the workplace is active and what size it is
- now the Edit command (either from Menu Edit ->Edit Object) or through the shortcut key (E key) or project tab context menu works also for the CNCJob objects (will open a text Editor with the GCode) - now the Edit command (either from Menu Edit ->Edit Object) or through the shortcut key (E key) or project tab context menu works also for the CNCJob objects (will open a text Editor with the GCode)
- grid snap toolbar is now always active
16.05.2020 16.05.2020

View File

@ -2506,10 +2506,13 @@ class App(QtCore.QObject):
else: else:
self.ui.grb_edit_toolbar.setVisible(False) self.ui.grb_edit_toolbar.setVisible(False)
if tb & 128: # if tb & 128:
self.ui.snap_toolbar.setVisible(True) # self.ui.snap_toolbar.setVisible(True)
else: # else:
self.ui.snap_toolbar.setVisible(False) # self.ui.snap_toolbar.setVisible(False)
# Grid Toolbar is always active now
self.ui.snap_toolbar.setVisible(True)
if tb & 256: if tb & 256:
self.ui.toolbarshell.setVisible(True) self.ui.toolbarshell.setVisible(True)