- removed the 'machinist setting' and allow all over the app the usages of both negative and positive values (where it is the case)

This commit is contained in:
Marius Stanciu
2021-01-02 16:53:50 +02:00
committed by Marius Stanciu
parent 1a53dd80b4
commit f5751d3f59
67 changed files with 186 additions and 740 deletions

View File

@@ -15,7 +15,6 @@ from PyQt5.QtCore import QSettings
import platform
from appGUI.GUIElements import *
from appGUI.preferences import settings
from appGUI.preferences.cncjob.CNCJobPreferencesUI import CNCJobPreferencesUI
from appGUI.preferences.excellon.ExcellonPreferencesUI import ExcellonPreferencesUI
from appGUI.preferences.general.GeneralPreferencesUI import GeneralPreferencesUI
@@ -1886,7 +1885,7 @@ class MainGUI(QtWidgets.QMainWindow):
qsettings = QSettings("Open Source", "FlatCAM")
if qsettings.contains("toolbar_lock"):
lock_val = settings.value('toolbar_lock')
lock_val = qsettings.value('toolbar_lock')
if lock_val == 'true':
lock_state = True
self.lock_action.setChecked(True)