- adjusted the layout in NCC Tool

This commit is contained in:
Marius Stanciu 2019-10-15 17:46:09 +03:00
parent 5f769105bc
commit 4be989fa5c
3 changed files with 7 additions and 2 deletions

View File

@ -21,7 +21,7 @@ import subprocess
import ctypes import ctypes
import tkinter as tk import tkinter as tk
from PyQt5 import QtPrintSupport, QtNetwork from PyQt5 import QtPrintSupport
from contextlib import contextmanager from contextlib import contextmanager
import gc import gc

View File

@ -9,6 +9,10 @@ CAD program, and create G-Code for Isolation routing.
================================================= =================================================
15.10.2019
- adjusted the layout in NCC Tool
14.10.2019 14.10.2019
- modified the result highlight color in Check Rules Tool - modified the result highlight color in Check Rules Tool

View File

@ -261,7 +261,6 @@ class NonCopperClear(FlatCAMTool, Gerber):
) )
grid2.addWidget(self.addtool_btn, 0, 0) grid2.addWidget(self.addtool_btn, 0, 0)
# grid2.addWidget(self.copytool_btn, 0, 1)
grid2.addWidget(self.deltool_btn, 0, 2) grid2.addWidget(self.deltool_btn, 0, 2)
self.empty_label_0 = QtWidgets.QLabel('') self.empty_label_0 = QtWidgets.QLabel('')
@ -269,6 +268,8 @@ class NonCopperClear(FlatCAMTool, Gerber):
grid3 = QtWidgets.QGridLayout() grid3 = QtWidgets.QGridLayout()
self.tools_box.addLayout(grid3) self.tools_box.addLayout(grid3)
grid3.setColumnStretch(0, 0)
grid3.setColumnStretch(1, 1)
e_lab_1 = QtWidgets.QLabel('<b>%s:</b>' % _("Parameters")) e_lab_1 = QtWidgets.QLabel('<b>%s:</b>' % _("Parameters"))
grid3.addWidget(e_lab_1, 0, 0) grid3.addWidget(e_lab_1, 0, 0)