- started to lay ground for upgrading the UI in the Gerber Editor

- fixed and upgraded the Buffer sub-tool in the Gerber Editor
- fixed adding same aperture multiple times
This commit is contained in:
Marius Stanciu
2022-05-16 18:13:12 +03:00
committed by Marius
parent 278727fcc7
commit c1a5320315
13 changed files with 2517 additions and 370 deletions

View File

@@ -9,6 +9,7 @@ from appEditors.AppTextEditor import AppTextEditor
from appObjects.CNCJobObject import CNCJobObject
from appGUI.GUIElements import FCTextArea, FCEntry, FCButton, FCTable, GLay, FCLabel
from PyQt6 import QtWidgets, QtCore, QtGui
from PyQt6.QtCore import Qt
# from io import StringIO
@@ -794,6 +795,7 @@ class AppGCodeEditorUI:
name_label = FCLabel(_("Name:"))
self.name_box.addWidget(name_label)
self.name_entry = FCEntry()
self.name_entry.setFocusPolicy(Qt.FocusPolicy.StrongFocus)
self.name_box.addWidget(self.name_entry)
separator_line = QtWidgets.QFrame()