diff --git a/Bookmark.py b/Bookmark.py
index 17700c58..dcd845be 100644
--- a/Bookmark.py
+++ b/Bookmark.py
@@ -78,7 +78,7 @@ class BookmarkManager(QtWidgets.QWidget):
new_title_lbl = QtWidgets.QLabel('%s' % _("New Bookmark"))
new_vlay.addWidget(new_title_lbl)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
new_vlay.addLayout(grid0)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 36488a5e..3a9b0d2a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@ CHANGELOG for FlatCAM beta
- more changes due of porting to PyQt6
- fixed the Autocompleter highlighting to work in PyQt6
- created a new custom layout based on the Grid Layout where I can set the horizontal and vertical spacings between grid items and used it throughout the app
+- changed the spacings in the new custom Grid layout
5.08.2021
diff --git a/appDatabase.py b/appDatabase.py
index 0703b898..10bdb6ae 100644
--- a/appDatabase.py
+++ b/appDatabase.py
@@ -193,7 +193,7 @@ class ToolsDB2UI:
# ###########################################################################
# ################ Tool UI form #############################################
# ###########################################################################
- self.grid_tool = FCGridLayout(v_spacing=3)
+ self.grid_tool = FCGridLayout(v_spacing=5, h_spacing=3)
self.description_vlay.addLayout(self.grid_tool)
self.grid_tool.setColumnStretch(0, 0)
self.grid_tool.setColumnStretch(1, 1)
@@ -277,7 +277,7 @@ class ToolsDB2UI:
# ###########################################################################
# ############### MILLING UI form ###########################################
# ###########################################################################
- self.grid0 = FCGridLayout(v_spacing=3)
+ self.grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.milling_vlay.addLayout(self.grid0)
self.grid0.setColumnStretch(0, 0)
self.grid0.setColumnStretch(1, 1)
@@ -576,7 +576,7 @@ class ToolsDB2UI:
# ############### NCC UI form ###############################################
# ###########################################################################
- self.grid2 = FCGridLayout(v_spacing=3)
+ self.grid2 = FCGridLayout(v_spacing=5, h_spacing=3)
self.ncc_vlay.addLayout(self.grid2)
self.grid2.setColumnStretch(0, 0)
self.grid2.setColumnStretch(1, 1)
@@ -722,7 +722,7 @@ class ToolsDB2UI:
# ############### Paint UI form #############################################
# ###########################################################################
- self.grid3 = FCGridLayout(v_spacing=3)
+ self.grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.paint_vlay.addLayout(self.grid3)
self.grid3.setColumnStretch(0, 0)
self.grid3.setColumnStretch(1, 1)
@@ -811,7 +811,7 @@ class ToolsDB2UI:
# ############### Isolation UI form #########################################
# ###########################################################################
- self.grid4 = FCGridLayout(v_spacing=3)
+ self.grid4 = FCGridLayout(v_spacing=5, h_spacing=3)
self.iso_vlay.addLayout(self.grid4)
self.grid4.setColumnStretch(0, 0)
self.grid4.setColumnStretch(1, 1)
@@ -888,7 +888,7 @@ class ToolsDB2UI:
# ###########################################################################
# ################ DRILLING UI form #########################################
# ###########################################################################
- self.grid5 = FCGridLayout(v_spacing=3)
+ self.grid5 = FCGridLayout(v_spacing=5, h_spacing=3)
self.drill_vlay.addLayout(self.grid5)
self.grid5.setColumnStretch(0, 0)
self.grid5.setColumnStretch(1, 1)
@@ -1113,7 +1113,7 @@ class ToolsDB2UI:
# ###########################################################################
# ################### Cutout UI form ########################################
# ###########################################################################
- self.grid6 = FCGridLayout(v_spacing=3)
+ self.grid6 = FCGridLayout(v_spacing=5, h_spacing=3)
self.cutout_vlay.addLayout(self.grid6)
self.grid6.setColumnStretch(0, 0)
self.grid6.setColumnStretch(1, 1)
@@ -1399,7 +1399,7 @@ class ToolsDB2(QtWidgets.QWidget):
# TOOLS DATABASE UI
# ##############################################################################
# ##############################################################################
- layout = FCGridLayout(v_spacing=3)
+ layout = FCGridLayout(v_spacing=5, h_spacing=3)
layout.setColumnStretch(0, 0)
layout.setColumnStretch(1, 1)
self.setLayout(layout)
diff --git a/appEditors/AppExcEditor.py b/appEditors/AppExcEditor.py
index 7886aeed..755fd96c 100644
--- a/appEditors/AppExcEditor.py
+++ b/appEditors/AppExcEditor.py
@@ -4060,7 +4060,7 @@ class AppExcEditorUI:
# #############################################################################################################
# ######################## ADD New Tool Grid ##################################################################
# #############################################################################################################
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
self.ui_vertical_lay.addLayout(grid1)
@@ -4114,7 +4114,7 @@ class AppExcEditorUI:
self.resize_frame.setContentsMargins(0, 0, 0, 0)
self.ui_vertical_lay.addWidget(self.resize_frame)
- self.resize_grid = FCGridLayout(v_spacing=3)
+ self.resize_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.resize_grid.setColumnStretch(0, 0)
self.resize_grid.setColumnStretch(1, 1)
self.resize_grid.setContentsMargins(0, 0, 0, 0)
@@ -4170,7 +4170,7 @@ class AppExcEditorUI:
self.array_frame.setContentsMargins(0, 0, 0, 0)
self.ui_vertical_lay.addWidget(self.array_frame)
- self.array_grid = FCGridLayout(v_spacing=3)
+ self.array_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.array_grid.setColumnStretch(0, 0)
self.array_grid.setColumnStretch(1, 1)
self.array_grid.setContentsMargins(0, 0, 0, 0)
@@ -4213,7 +4213,7 @@ class AppExcEditorUI:
self.array_linear_frame = QtWidgets.QFrame()
self.array_linear_frame.setContentsMargins(0, 0, 0, 0)
self.array_grid.addWidget(self.array_linear_frame, 6, 0, 1, 2)
- self.lin_grid = FCGridLayout(v_spacing=3)
+ self.lin_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.lin_grid.setColumnStretch(0, 0)
self.lin_grid.setColumnStretch(1, 1)
self.lin_grid.setContentsMargins(0, 0, 0, 0)
@@ -4272,7 +4272,7 @@ class AppExcEditorUI:
self.array_circular_frame.setContentsMargins(0, 0, 0, 0)
self.array_grid.addWidget(self.array_circular_frame, 8, 0, 1, 2)
- self.circ_grid = FCGridLayout(v_spacing=3)
+ self.circ_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.circ_grid.setColumnStretch(0, 0)
self.circ_grid.setColumnStretch(1, 1)
self.circ_grid.setContentsMargins(0, 0, 0, 0)
@@ -4316,7 +4316,7 @@ class AppExcEditorUI:
self.slot_frame.setContentsMargins(0, 0, 0, 0)
self.ui_vertical_lay.addWidget(self.slot_frame)
- self.slot_grid = FCGridLayout(v_spacing=3)
+ self.slot_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.slot_grid.setColumnStretch(0, 0)
self.slot_grid.setColumnStretch(1, 1)
self.slot_grid.setContentsMargins(0, 0, 0, 0)
@@ -4390,7 +4390,7 @@ class AppExcEditorUI:
self.slot_array_frame.setContentsMargins(0, 0, 0, 0)
self.ui_vertical_lay.addWidget(self.slot_array_frame)
- self.slot_array_grid = FCGridLayout(v_spacing=3)
+ self.slot_array_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.slot_array_grid.setColumnStretch(0, 0)
self.slot_array_grid.setColumnStretch(1, 1)
self.slot_array_grid.setContentsMargins(0, 0, 0, 0)
@@ -4434,7 +4434,7 @@ class AppExcEditorUI:
self.slot_array_linear_frame.setContentsMargins(0, 0, 0, 0)
self.slot_array_grid.addWidget(self.slot_array_linear_frame, 6, 0, 1, 2)
- self.slot_array_lin_grid = FCGridLayout(v_spacing=3)
+ self.slot_array_lin_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.slot_array_lin_grid.setColumnStretch(0, 0)
self.slot_array_lin_grid.setColumnStretch(1, 1)
self.slot_array_lin_grid.setContentsMargins(0, 0, 0, 0)
@@ -4494,7 +4494,7 @@ class AppExcEditorUI:
self.slot_array_circular_frame.setContentsMargins(0, 0, 0, 0)
self.slot_array_grid.addWidget(self.slot_array_circular_frame, 8, 0, 1, 2)
- self.slot_array_circ_grid = FCGridLayout(v_spacing=3)
+ self.slot_array_circ_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.slot_array_circ_grid.setColumnStretch(0, 0)
self.slot_array_circ_grid.setColumnStretch(1, 1)
self.slot_array_circ_grid.setContentsMargins(0, 0, 0, 0)
diff --git a/appEditors/AppGeoEditor.py b/appEditors/AppGeoEditor.py
index 1980051a..9bab4429 100644
--- a/appEditors/AppGeoEditor.py
+++ b/appEditors/AppGeoEditor.py
@@ -83,7 +83,7 @@ class BufferSelectionTool(AppTool):
self.buffer_tool_frame.setLayout(self.buffer_tools_box)
# Grid Layout
- grid_buffer = FCGridLayout(v_spacing=3)
+ grid_buffer = FCGridLayout(v_spacing=5, h_spacing=3)
grid_buffer.setColumnStretch(0, 0)
grid_buffer.setColumnStretch(1, 1)
self.buffer_tools_box.addLayout(grid_buffer)
@@ -267,7 +267,7 @@ class TextInputTool(AppTool):
self.text_tools_box.addWidget(title_label)
# Grid Layout
- self.grid_text = FCGridLayout(v_spacing=3)
+ self.grid_text = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid_text.setColumnStretch(0, 0)
self.grid_text.setColumnStretch(1, 1)
self.text_tools_box.addLayout(self.grid_text)
@@ -505,7 +505,7 @@ class PaintOptionsTool(AppTool):
""")
self.layout.addWidget(title_label)
- grid = FCGridLayout(v_spacing=3)
+ grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid)
grid.setColumnStretch(0, 0)
grid.setColumnStretch(1, 1)
@@ -735,7 +735,7 @@ class TransformEditorTool(AppTool):
self.layout.addWidget(FCLabel(''))
# ## Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
@@ -3457,7 +3457,7 @@ class AppGeoEditor(QtCore.QObject):
self.level.setCheckable(True)
self.title_box.addWidget(self.level)
- self.grid_d = FCGridLayout(v_spacing=3)
+ self.grid_d = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid_d.setColumnStretch(0, 0)
self.grid_d.setColumnStretch(1, 1)
self.tools_box.addLayout(self.grid_d)
@@ -3501,7 +3501,7 @@ class AppGeoEditor(QtCore.QObject):
self.adv_frame.setContentsMargins(0, 0, 0, 0)
self.tools_box.addWidget(self.adv_frame)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
grid0.setContentsMargins(0, 0, 0, 0)
diff --git a/appEditors/AppGerberEditor.py b/appEditors/AppGerberEditor.py
index ee00ed1c..0010197e 100644
--- a/appEditors/AppGerberEditor.py
+++ b/appEditors/AppGerberEditor.py
@@ -6090,7 +6090,7 @@ class AppGerberEditorUI:
# #############################################################################################################
# ############################ Add/Delete an new Aperture #####################################################
# #############################################################################################################
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.apertures_box.addLayout(grid1)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
@@ -6191,7 +6191,7 @@ class AppGerberEditorUI:
self.shape_frame.setContentsMargins(0, 0, 0, 0)
self.custom_box.addWidget(self.shape_frame)
- self.shape_grid = FCGridLayout(v_spacing=3)
+ self.shape_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.shape_grid.setColumnStretch(0, 0)
self.shape_grid.setColumnStretch(1, 1)
self.shape_grid.setContentsMargins(0, 0, 0, 0)
@@ -6213,7 +6213,7 @@ class AppGerberEditorUI:
)
self.shape_grid.addWidget(param_title, 4, 0, 1, 3)
- p_grid = FCGridLayout(v_spacing=3)
+ p_grid = FCGridLayout(v_spacing=5, h_spacing=3)
p_grid.setColumnStretch(0, 0)
p_grid.setColumnStretch(1, 0)
p_grid.setColumnStretch(2, 0)
@@ -6330,7 +6330,7 @@ class AppGerberEditorUI:
self.buffer_tools_box.addWidget(buf_title_lbl)
# Grid Layout
- buff_grid = FCGridLayout(v_spacing=3)
+ buff_grid = FCGridLayout(v_spacing=5, h_spacing=3)
buff_grid.setColumnStretch(0, 0)
buff_grid.setColumnStretch(1, 1)
self.buffer_tools_box.addLayout(buff_grid)
@@ -6390,7 +6390,7 @@ class AppGerberEditorUI:
self.scale_tools_box.addWidget(scale_title_lbl)
# Grid Layout
- scale_grid = FCGridLayout(v_spacing=3)
+ scale_grid = FCGridLayout(v_spacing=5, h_spacing=3)
scale_grid.setColumnStretch(0, 0)
scale_grid.setColumnStretch(1, 1)
self.scale_tools_box.addLayout(scale_grid)
@@ -6441,7 +6441,7 @@ class AppGerberEditorUI:
self.ma_tools_box.addWidget(ma_title_lbl)
# Form Layout
- mark_grid = FCGridLayout(v_spacing=3)
+ mark_grid = FCGridLayout(v_spacing=5, h_spacing=3)
mark_grid.setColumnStretch(0, 0)
mark_grid.setColumnStretch(1, 1)
self.ma_tools_box.addLayout(mark_grid)
@@ -6512,7 +6512,7 @@ class AppGerberEditorUI:
separator_line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
self.array_box.addWidget(separator_line)
- array_grid = FCGridLayout(v_spacing=3)
+ array_grid = FCGridLayout(v_spacing=5, h_spacing=3)
array_grid.setColumnStretch(0, 0)
array_grid.setColumnStretch(1, 1)
self.array_box.addLayout(array_grid)
@@ -6689,7 +6689,7 @@ class TransformEditorTool(AppTool):
self.layout.addWidget(FCLabel(''))
# ## Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appEditors/appGCodeEditor.py b/appEditors/appGCodeEditor.py
index da1aff45..0c6fbcc1 100644
--- a/appEditors/appGCodeEditor.py
+++ b/appEditors/appGCodeEditor.py
@@ -827,7 +827,7 @@ class AppGCodeEditorUI:
self.snippet_frame.setContentsMargins(0, 0, 0, 0)
self.edit_box.addWidget(self.snippet_frame)
- self.snippet_grid = FCGridLayout(v_spacing=3)
+ self.snippet_grid = FCGridLayout(v_spacing=5, h_spacing=3)
# self.snippet_grid.setColumnStretch(0, 0)
# self.snippet_grid.setColumnStretch(1, 1)
self.snippet_grid.setContentsMargins(0, 0, 0, 0)
diff --git a/appGUI/GUIElements.py b/appGUI/GUIElements.py
index 8599856c..b9acdd38 100644
--- a/appGUI/GUIElements.py
+++ b/appGUI/GUIElements.py
@@ -4730,7 +4730,7 @@ class FCJog(QtWidgets.QFrame):
self.setLineWidth(1)
# JOG axes
- grbl_jog_grid = FCGridLayout(v_spacing=3)
+ grbl_jog_grid = FCGridLayout(v_spacing=5, h_spacing=3)
grbl_jog_grid.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
grbl_jog_grid.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetMinimumSize)
grbl_jog_grid.setContentsMargins(2, 4, 2, 4)
@@ -4809,7 +4809,7 @@ class FCZeroAxes(QtWidgets.QFrame):
self.setLineWidth(1)
# Zero the axes
- grbl_zero_grid = FCGridLayout(v_spacing=3)
+ grbl_zero_grid = FCGridLayout(v_spacing=5, h_spacing=3)
grbl_zero_grid.setContentsMargins(2, 4, 2, 4)
grbl_zero_grid.setColumnStretch(0, 0)
grbl_zero_grid.setColumnStretch(1, 0)
@@ -5182,12 +5182,15 @@ class FCGridLayout(QtWidgets.QGridLayout):
super().__init__(*args, parent=parent)
+ # block signals so there is a single repaint signal fired
+ self.blockSignals(True)
if h_spacing is not None:
self.setHorizontalSpacing(h_spacing)
if v_spacing is not None:
self.setVerticalSpacing(v_spacing)
if margins is not None:
self.setContentsMargins(margins[0], margins[1], margins[2], margins[3])
+ self.blockSignals(False)
def message_dialog(title, message, kind="info", parent=None):
diff --git a/appGUI/ObjectUI.py b/appGUI/ObjectUI.py
index fdf53cea..bd4e7111 100644
--- a/appGUI/ObjectUI.py
+++ b/appGUI/ObjectUI.py
@@ -86,7 +86,7 @@ class ObjectUI(QtWidgets.QWidget):
# ## Common to all objects ##
# ###########################
if common is True:
- self.common_grid = FCGridLayout(v_spacing=3)
+ self.common_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.common_grid.setColumnStretch(0, 1)
self.common_grid.setColumnStretch(1, 0)
layout.addLayout(self.common_grid)
@@ -178,7 +178,7 @@ class GerberObjectUI(ObjectUI):
ObjectUI.__init__(self, title=_('Gerber Object'), parent=parent, app=self.app)
# Plot options
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setAlignment(QtCore.Qt.AlignmentFlag.AlignLeft | QtCore.Qt.AlignmentFlag.AlignVCenter)
self.custom_box.addLayout(grid0)
grid0.setColumnStretch(0, 0)
@@ -425,7 +425,7 @@ class GerberObjectUI(ObjectUI):
self.util_frame.setLayout(self.util_box)
self.util_frame.hide()
- util_grid = FCGridLayout(v_spacing=3)
+ util_grid = FCGridLayout(v_spacing=5, h_spacing=3)
util_grid.setColumnStretch(0, 0)
util_grid.setColumnStretch(1, 1)
self.util_box.addLayout(util_grid)
@@ -540,7 +540,7 @@ class ExcellonObjectUI(ObjectUI):
parent=parent,
app=self.app)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setAlignment(QtCore.Qt.AlignmentFlag.AlignLeft | QtCore.Qt.AlignmentFlag.AlignVCenter)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
@@ -706,7 +706,7 @@ class ExcellonObjectUI(ObjectUI):
# ########## TOOLS GRID ###########################################
# #################################################################
- grid2 = FCGridLayout(v_spacing=3)
+ grid2 = FCGridLayout(v_spacing=5, h_spacing=3)
grid2.setColumnStretch(0, 0)
grid2.setColumnStretch(1, 1)
grid0.addLayout(grid2, 12, 0, 1, 3)
@@ -773,7 +773,7 @@ class ExcellonObjectUI(ObjectUI):
self.util_frame.setLayout(self.util_box)
self.util_frame.hide()
- util_grid = FCGridLayout(v_spacing=3)
+ util_grid = FCGridLayout(v_spacing=5, h_spacing=3)
util_grid.setColumnStretch(0, 0)
util_grid.setColumnStretch(1, 1)
self.util_box.addLayout(util_grid)
@@ -868,7 +868,7 @@ class GeometryObjectUI(ObjectUI):
)
# Plot options
- grid_header = FCGridLayout(v_spacing=3)
+ grid_header = FCGridLayout(v_spacing=5, h_spacing=3)
grid_header.setAlignment(QtCore.Qt.AlignmentFlag.AlignLeft | QtCore.Qt.AlignmentFlag.AlignVCenter)
self.custom_box.addLayout(grid_header)
grid_header.setColumnStretch(0, 0)
@@ -958,7 +958,7 @@ class GeometryObjectUI(ObjectUI):
self.geo_table_box.setContentsMargins(0, 0, 0, 0)
self.geo_table_frame.setLayout(self.geo_table_box)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.geo_table_box.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
@@ -1029,7 +1029,7 @@ class GeometryObjectUI(ObjectUI):
_("Plot column. It is visible only for MultiGeo Geometry objects.\n"
"Enable plot for the selected tool geometry."))
- self.grid4 = FCGridLayout(v_spacing=3)
+ self.grid4 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid4.setColumnStretch(0, 0)
self.grid4.setColumnStretch(1, 1)
self.geo_tools_box.addLayout(self.grid4)
@@ -1109,7 +1109,7 @@ class GeometryObjectUI(ObjectUI):
self.util_frame.setLayout(self.util_box)
self.util_frame.hide()
- util_grid = FCGridLayout(v_spacing=3)
+ util_grid = FCGridLayout(v_spacing=5, h_spacing=3)
util_grid.setColumnStretch(0, 0)
util_grid.setColumnStretch(1, 1)
self.util_box.addLayout(util_grid)
@@ -1209,7 +1209,7 @@ class CNCObjectUI(ObjectUI):
for i in range(0, self.common_grid.count()):
self.common_grid.itemAt(i).widget().hide()
- f_lay = FCGridLayout(v_spacing=3)
+ f_lay = FCGridLayout(v_spacing=5, h_spacing=3)
f_lay.setColumnStretch(0, 0)
f_lay.setColumnStretch(1, 1)
self.custom_box.addLayout(f_lay)
@@ -1599,7 +1599,7 @@ class DocumentObjectUI(ObjectUI):
# ############ Grid LAYOUT #####################################
# ##############################################################
- self.grid0 = FCGridLayout(v_spacing=3)
+ self.grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid0.setColumnStretch(0, 0)
self.grid0.setColumnStretch(1, 1)
self.grid0.setColumnStretch(2, 0)
diff --git a/appGUI/preferences/OptionsGroupUI.py b/appGUI/preferences/OptionsGroupUI.py
index fa37026c..c6f24a3b 100644
--- a/appGUI/preferences/OptionsGroupUI.py
+++ b/appGUI/preferences/OptionsGroupUI.py
@@ -48,7 +48,7 @@ class OptionsGroupUI2(OptionsGroupUI):
def __init__(self, **kwargs):
super().__init__(**kwargs)
- self.grid = FCGridLayout(v_spacing=3)
+ self.grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(self.grid)
self.grid.setColumnStretch(0, 0)
self.grid.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/cncjob/CNCJobAdvOptPrefGroupUI.py b/appGUI/preferences/cncjob/CNCJobAdvOptPrefGroupUI.py
index a652cd17..419e6f70 100644
--- a/appGUI/preferences/cncjob/CNCJobAdvOptPrefGroupUI.py
+++ b/appGUI/preferences/cncjob/CNCJobAdvOptPrefGroupUI.py
@@ -19,7 +19,7 @@ class CNCJobAdvOptPrefGroupUI(OptionsGroupUI):
self.setTitle(str(_("CNC Job Adv. Options")))
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/cncjob/CNCJobGenPrefGroupUI.py b/appGUI/preferences/cncjob/CNCJobGenPrefGroupUI.py
index 12f71abe..b4cb882b 100644
--- a/appGUI/preferences/cncjob/CNCJobGenPrefGroupUI.py
+++ b/appGUI/preferences/cncjob/CNCJobGenPrefGroupUI.py
@@ -24,7 +24,7 @@ class CNCJobGenPrefGroupUI(OptionsGroupUI):
self.plot_options_label = FCLabel("%s:" % _("Plot Options"))
self.layout.addWidget(self.plot_options_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py b/appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py
index 30ea69b1..5a2205cc 100644
--- a/appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py
+++ b/appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py
@@ -37,7 +37,7 @@ class CNCJobOptPrefGroupUI(OptionsGroupUI):
font = QtGui.QFont()
font.setPointSize(tb_fsize)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py b/appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py
index e7c846fe..4739737b 100644
--- a/appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py
+++ b/appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py
@@ -32,7 +32,7 @@ class ExcellonAdvOptPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.exc_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py b/appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py
index 616767a6..39f815f4 100644
--- a/appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py
+++ b/appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py
@@ -26,7 +26,7 @@ class ExcellonEditorPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.param_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Selection Limit
diff --git a/appGUI/preferences/excellon/ExcellonExpPrefGroupUI.py b/appGUI/preferences/excellon/ExcellonExpPrefGroupUI.py
index a5be02a9..6cfce467 100644
--- a/appGUI/preferences/excellon/ExcellonExpPrefGroupUI.py
+++ b/appGUI/preferences/excellon/ExcellonExpPrefGroupUI.py
@@ -27,7 +27,7 @@ class ExcellonExpPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.export_options_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/excellon/ExcellonGenPrefGroupUI.py b/appGUI/preferences/excellon/ExcellonGenPrefGroupUI.py
index 349bb63e..9e9820a9 100644
--- a/appGUI/preferences/excellon/ExcellonGenPrefGroupUI.py
+++ b/appGUI/preferences/excellon/ExcellonGenPrefGroupUI.py
@@ -26,7 +26,7 @@ class ExcellonGenPrefGroupUI(OptionsGroupUI):
self.plot_options_label = FCLabel("%s:" % _("Plot Options"))
self.layout.addWidget(self.plot_options_label)
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid1)
# Plot CB
@@ -55,7 +55,7 @@ class ExcellonGenPrefGroupUI(OptionsGroupUI):
separator_line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
grid1.addWidget(separator_line, 1, 0, 1, 3)
- grid2 = FCGridLayout(v_spacing=3)
+ grid2 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid2)
grid2.setColumnStretch(0, 0)
grid2.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/excellon/ExcellonOptPrefGroupUI.py b/appGUI/preferences/excellon/ExcellonOptPrefGroupUI.py
index f0d03b1e..69729f6e 100644
--- a/appGUI/preferences/excellon/ExcellonOptPrefGroupUI.py
+++ b/appGUI/preferences/excellon/ExcellonOptPrefGroupUI.py
@@ -28,7 +28,7 @@ class ExcellonOptPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.cncjob_label)
- grid2 = FCGridLayout(v_spacing=3)
+ grid2 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid2)
grid2.setColumnStretch(0, 0)
grid2.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/general/GeneralAPPSetGroupUI.py b/appGUI/preferences/general/GeneralAPPSetGroupUI.py
index dbcd55b3..ceae7c13 100644
--- a/appGUI/preferences/general/GeneralAPPSetGroupUI.py
+++ b/appGUI/preferences/general/GeneralAPPSetGroupUI.py
@@ -33,7 +33,7 @@ class GeneralAPPSetGroupUI(OptionsGroupUI):
self.resource_loc = 'assets/resources'
# Create a grid layout for the Application general settings
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/general/GeneralAppPrefGroupUI.py b/appGUI/preferences/general/GeneralAppPrefGroupUI.py
index 805fe389..f2538b6d 100644
--- a/appGUI/preferences/general/GeneralAppPrefGroupUI.py
+++ b/appGUI/preferences/general/GeneralAppPrefGroupUI.py
@@ -24,7 +24,7 @@ class GeneralAppPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# Create a form layout for the Application general settings
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/general/GeneralGUIPrefGroupUI.py b/appGUI/preferences/general/GeneralGUIPrefGroupUI.py
index a5cbc917..246d9f79 100644
--- a/appGUI/preferences/general/GeneralGUIPrefGroupUI.py
+++ b/appGUI/preferences/general/GeneralGUIPrefGroupUI.py
@@ -22,7 +22,7 @@ class GeneralGUIPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# Create a grid layout for the Application general settings
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py b/appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py
index 1785979d..d74cd59b 100644
--- a/appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py
+++ b/appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py
@@ -32,7 +32,7 @@ class GeometryAdvOptPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.geo_label)
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid1)
# Size of trace segment on X axis
diff --git a/appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py b/appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py
index 8fe11483..92c8f552 100644
--- a/appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py
+++ b/appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py
@@ -27,7 +27,7 @@ class GeometryEditorPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.param_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Selection Limit
diff --git a/appGUI/preferences/geometry/GeometryExpPrefGroupUI.py b/appGUI/preferences/geometry/GeometryExpPrefGroupUI.py
index d9239c99..0de01d7e 100644
--- a/appGUI/preferences/geometry/GeometryExpPrefGroupUI.py
+++ b/appGUI/preferences/geometry/GeometryExpPrefGroupUI.py
@@ -27,7 +27,7 @@ class GeometryExpPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.export_options_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/geometry/GeometryGenPrefGroupUI.py b/appGUI/preferences/geometry/GeometryGenPrefGroupUI.py
index 437c2d49..fb3bdd84 100644
--- a/appGUI/preferences/geometry/GeometryGenPrefGroupUI.py
+++ b/appGUI/preferences/geometry/GeometryGenPrefGroupUI.py
@@ -43,7 +43,7 @@ class GeometryGenPrefGroupUI(OptionsGroupUI):
)
plot_hlay.addWidget(self.multicolored_cb)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/geometry/GeometryOptPrefGroupUI.py b/appGUI/preferences/geometry/GeometryOptPrefGroupUI.py
index c7fa3cdf..c69818e8 100644
--- a/appGUI/preferences/geometry/GeometryOptPrefGroupUI.py
+++ b/appGUI/preferences/geometry/GeometryOptPrefGroupUI.py
@@ -33,7 +33,7 @@ class GeometryOptPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.cncjob_label)
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid1)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/gerber/GerberAdvOptPrefGroupUI.py b/appGUI/preferences/gerber/GerberAdvOptPrefGroupUI.py
index 4b7074d0..fd2560f4 100644
--- a/appGUI/preferences/gerber/GerberAdvOptPrefGroupUI.py
+++ b/appGUI/preferences/gerber/GerberAdvOptPrefGroupUI.py
@@ -29,7 +29,7 @@ class GerberAdvOptPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.adv_param_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Follow Attribute
diff --git a/appGUI/preferences/gerber/GerberEditorPrefGroupUI.py b/appGUI/preferences/gerber/GerberEditorPrefGroupUI.py
index 19d8e83f..e3d0acc3 100644
--- a/appGUI/preferences/gerber/GerberEditorPrefGroupUI.py
+++ b/appGUI/preferences/gerber/GerberEditorPrefGroupUI.py
@@ -28,7 +28,7 @@ class GerberEditorPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.param_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Selection Limit
diff --git a/appGUI/preferences/gerber/GerberExpPrefGroupUI.py b/appGUI/preferences/gerber/GerberExpPrefGroupUI.py
index 40620970..fc4c21ee 100644
--- a/appGUI/preferences/gerber/GerberExpPrefGroupUI.py
+++ b/appGUI/preferences/gerber/GerberExpPrefGroupUI.py
@@ -28,7 +28,7 @@ class GerberExpPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.export_options_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/gerber/GerberGenPrefGroupUI.py b/appGUI/preferences/gerber/GerberGenPrefGroupUI.py
index 888ab6f1..71e4e30f 100644
--- a/appGUI/preferences/gerber/GerberGenPrefGroupUI.py
+++ b/appGUI/preferences/gerber/GerberGenPrefGroupUI.py
@@ -25,7 +25,7 @@ class GerberGenPrefGroupUI(OptionsGroupUI):
self.plot_options_label = FCLabel("%s:" % _("Plot Options"))
self.layout.addWidget(self.plot_options_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Plot CB
diff --git a/appGUI/preferences/gerber/GerberOptPrefGroupUI.py b/appGUI/preferences/gerber/GerberOptPrefGroupUI.py
index 421f507e..497b4e9b 100644
--- a/appGUI/preferences/gerber/GerberOptPrefGroupUI.py
+++ b/appGUI/preferences/gerber/GerberOptPrefGroupUI.py
@@ -32,7 +32,7 @@ class GerberOptPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.clearcopper_label)
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid1)
# Margin
@@ -66,7 +66,7 @@ class GerberOptPrefGroupUI(OptionsGroupUI):
self.boundingbox_label = FCLabel('%s:' % _('Bounding Box'))
self.layout.addWidget(self.boundingbox_label)
- grid2 = FCGridLayout(v_spacing=3)
+ grid2 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid2)
bbmargin = FCLabel('%s:' % _('Boundary Margin'))
diff --git a/appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py b/appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py
index 526fc125..5b068080 100644
--- a/appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py
@@ -21,7 +21,7 @@ class Tools2CThievingPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2CalPrefGroupUI.py b/appGUI/preferences/tools/Tools2CalPrefGroupUI.py
index 7ad48667..62b5c5cb 100644
--- a/appGUI/preferences/tools/Tools2CalPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2CalPrefGroupUI.py
@@ -21,7 +21,7 @@ class Tools2CalPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2ExtractPrefGroupUI.py b/appGUI/preferences/tools/Tools2ExtractPrefGroupUI.py
index 49f55658..42bfc368 100644
--- a/appGUI/preferences/tools/Tools2ExtractPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2ExtractPrefGroupUI.py
@@ -21,7 +21,7 @@ class Tools2EDrillsPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py b/appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py
index 5e6de6f8..b0026dce 100644
--- a/appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py
@@ -21,7 +21,7 @@ class Tools2FiducialsPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2InvertPrefGroupUI.py b/appGUI/preferences/tools/Tools2InvertPrefGroupUI.py
index 84a5e178..a4c2db95 100644
--- a/appGUI/preferences/tools/Tools2InvertPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2InvertPrefGroupUI.py
@@ -29,7 +29,7 @@ class Tools2InvertPrefGroupUI(OptionsGroupUI):
self.layout.addWidget(self.sublabel)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/tools/Tools2OptimalPrefGroupUI.py b/appGUI/preferences/tools/Tools2OptimalPrefGroupUI.py
index 8f7decf6..fb1e1107 100644
--- a/appGUI/preferences/tools/Tools2OptimalPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2OptimalPrefGroupUI.py
@@ -28,7 +28,7 @@ class Tools2OptimalPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.optlabel)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py b/appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py
index 7408eeec..3e1b5e0b 100644
--- a/appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py
@@ -21,7 +21,7 @@ class Tools2PunchGerberPrefGroupUI(OptionsGroupUI):
self.decimals = decimals
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py b/appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py
index 1ccc6ebb..736254e2 100644
--- a/appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py
@@ -29,7 +29,7 @@ class Tools2QRCodePrefGroupUI(OptionsGroupUI):
self.layout.addWidget(self.qrlabel)
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/Tools2RulesCheckPrefGroupUI.py b/appGUI/preferences/tools/Tools2RulesCheckPrefGroupUI.py
index f161ee0e..7d380753 100644
--- a/appGUI/preferences/tools/Tools2RulesCheckPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2RulesCheckPrefGroupUI.py
@@ -28,7 +28,7 @@ class Tools2RulesCheckPrefGroupUI(OptionsGroupUI):
self.layout.addWidget(self.crlabel)
# Form Layout
- self.grid0 = FCGridLayout(v_spacing=3)
+ self.grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid0.setColumnStretch(0, 0)
self.grid0.setColumnStretch(1, 1)
self.layout.addLayout(self.grid0)
diff --git a/appGUI/preferences/tools/Tools2sidedPrefGroupUI.py b/appGUI/preferences/tools/Tools2sidedPrefGroupUI.py
index 9ea1e41e..6afec480 100644
--- a/appGUI/preferences/tools/Tools2sidedPrefGroupUI.py
+++ b/appGUI/preferences/tools/Tools2sidedPrefGroupUI.py
@@ -28,7 +28,7 @@ class Tools2sidedPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.dblsided_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# ## Drill diameter for alignment holes
diff --git a/appGUI/preferences/tools/ToolsCalculatorsPrefGroupUI.py b/appGUI/preferences/tools/ToolsCalculatorsPrefGroupUI.py
index 73330afc..6823fe6e 100644
--- a/appGUI/preferences/tools/ToolsCalculatorsPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsCalculatorsPrefGroupUI.py
@@ -29,7 +29,7 @@ class ToolsCalculatorsPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.vshape_tool_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/tools/ToolsCornersPrefGroupUI.py b/appGUI/preferences/tools/ToolsCornersPrefGroupUI.py
index 2062b5ad..af612ed8 100644
--- a/appGUI/preferences/tools/ToolsCornersPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsCornersPrefGroupUI.py
@@ -20,7 +20,7 @@ class ToolsCornersPrefGroupUI(OptionsGroupUI):
self.setTitle(str(_("Corner Markers Options")))
self.decimals = decimals
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/tools/ToolsCutoutPrefGroupUI.py b/appGUI/preferences/tools/ToolsCutoutPrefGroupUI.py
index c3058e83..90fd7040 100644
--- a/appGUI/preferences/tools/ToolsCutoutPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsCutoutPrefGroupUI.py
@@ -30,7 +30,7 @@ class ToolsCutoutPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.board_cutout_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
tdclabel = FCLabel('%s:' % _('Tool Diameter'))
diff --git a/appGUI/preferences/tools/ToolsDrillPrefGroupUI.py b/appGUI/preferences/tools/ToolsDrillPrefGroupUI.py
index 7f26bea0..ac3d9455 100644
--- a/appGUI/preferences/tools/ToolsDrillPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsDrillPrefGroupUI.py
@@ -28,7 +28,7 @@ class ToolsDrillPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.drill_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Tool order Radio Button
diff --git a/appGUI/preferences/tools/ToolsFilmPrefGroupUI.py b/appGUI/preferences/tools/ToolsFilmPrefGroupUI.py
index 87843653..462b4e2a 100644
--- a/appGUI/preferences/tools/ToolsFilmPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsFilmPrefGroupUI.py
@@ -29,7 +29,7 @@ class ToolsFilmPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.film_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
self.film_type_radio = RadioSet([{'label': 'Pos', 'value': 'pos'},
diff --git a/appGUI/preferences/tools/ToolsISOPrefGroupUI.py b/appGUI/preferences/tools/ToolsISOPrefGroupUI.py
index 35e31b53..a1fc14e2 100644
--- a/appGUI/preferences/tools/ToolsISOPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsISOPrefGroupUI.py
@@ -28,7 +28,7 @@ class ToolsISOPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.iso_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Tool Dias
diff --git a/appGUI/preferences/tools/ToolsLevelPrefGroupUI.py b/appGUI/preferences/tools/ToolsLevelPrefGroupUI.py
index be6221f8..591668d8 100644
--- a/appGUI/preferences/tools/ToolsLevelPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsLevelPrefGroupUI.py
@@ -28,7 +28,7 @@ class ToolsLevelPrefGroupUI(OptionsGroupUI):
self.layout.addWidget(self.levelling_label)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/tools/ToolsMillPrefGroupUI.py b/appGUI/preferences/tools/ToolsMillPrefGroupUI.py
index 8b781c21..99475448 100644
--- a/appGUI/preferences/tools/ToolsMillPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsMillPrefGroupUI.py
@@ -28,7 +28,7 @@ class ToolsMillPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.mill_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Tooldia
diff --git a/appGUI/preferences/tools/ToolsNCCPrefGroupUI.py b/appGUI/preferences/tools/ToolsNCCPrefGroupUI.py
index e9ef2c83..fd51ffa0 100644
--- a/appGUI/preferences/tools/ToolsNCCPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsNCCPrefGroupUI.py
@@ -29,7 +29,7 @@ class ToolsNCCPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.clearcopper_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
ncctdlabel = FCLabel('%s:' % _('Tools Dia'))
diff --git a/appGUI/preferences/tools/ToolsPaintPrefGroupUI.py b/appGUI/preferences/tools/ToolsPaintPrefGroupUI.py
index 7876733c..a64500b2 100644
--- a/appGUI/preferences/tools/ToolsPaintPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsPaintPrefGroupUI.py
@@ -31,7 +31,7 @@ class ToolsPaintPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.paint_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appGUI/preferences/tools/ToolsPanelizePrefGroupUI.py b/appGUI/preferences/tools/ToolsPanelizePrefGroupUI.py
index 915c2f5b..f4bd4d1e 100644
--- a/appGUI/preferences/tools/ToolsPanelizePrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsPanelizePrefGroupUI.py
@@ -29,7 +29,7 @@ class ToolsPanelizePrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.panelize_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appGUI/preferences/tools/ToolsSolderpastePrefGroupUI.py b/appGUI/preferences/tools/ToolsSolderpastePrefGroupUI.py
index f1e5c410..978b5b8c 100644
--- a/appGUI/preferences/tools/ToolsSolderpastePrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsSolderpastePrefGroupUI.py
@@ -28,7 +28,7 @@ class ToolsSolderpastePrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.solderpastelabel)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
# Nozzle Tool Diameters
diff --git a/appGUI/preferences/tools/ToolsTransformPrefGroupUI.py b/appGUI/preferences/tools/ToolsTransformPrefGroupUI.py
index 8747aa4c..39e6723b 100644
--- a/appGUI/preferences/tools/ToolsTransformPrefGroupUI.py
+++ b/appGUI/preferences/tools/ToolsTransformPrefGroupUI.py
@@ -28,7 +28,7 @@ class ToolsTransformPrefGroupUI(OptionsGroupUI):
)
self.layout.addWidget(self.transform_label)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolAlignObjects.py b/appPlugins/ToolAlignObjects.py
index 68618093..935c3103 100644
--- a/appPlugins/ToolAlignObjects.py
+++ b/appPlugins/ToolAlignObjects.py
@@ -414,7 +414,7 @@ class AlignUI:
self.layout.addWidget(QtWidgets.QLabel(""))
# Form Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appPlugins/ToolCalculators.py b/appPlugins/ToolCalculators.py
index fd9d27c6..8eef83e5 100644
--- a/appPlugins/ToolCalculators.py
+++ b/appPlugins/ToolCalculators.py
@@ -445,7 +445,7 @@ class CalcUI:
self.layout.addWidget(units_label)
# Grid Layout
- grid_units_layout = FCGridLayout(v_spacing=3)
+ grid_units_layout = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_units_layout)
inch_label = FCLabel(_("INCH"))
@@ -470,7 +470,7 @@ class CalcUI:
# #############################################################################################################
# ################################ V-shape Tool Calculator ####################################################
# #############################################################################################################
- grid_vshape = FCGridLayout(v_spacing=3)
+ grid_vshape = FCGridLayout(v_spacing=5, h_spacing=3)
grid_vshape.setColumnStretch(0, 0)
grid_vshape.setColumnStretch(1, 1)
self.layout.addLayout(grid_vshape)
@@ -546,7 +546,7 @@ class CalcUI:
# #############################################################################################################
# ############################## ElectroPlating Tool Calculator ###############################################
# #############################################################################################################
- grid_electro = FCGridLayout(v_spacing=3)
+ grid_electro = FCGridLayout(v_spacing=5, h_spacing=3)
grid_electro.setColumnStretch(0, 0)
grid_electro.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolCalibration.py b/appPlugins/ToolCalibration.py
index 93c1f5cc..1227e4f2 100644
--- a/appPlugins/ToolCalibration.py
+++ b/appPlugins/ToolCalibration.py
@@ -783,7 +783,7 @@ class CalibrationUI:
self.layout.addWidget(QtWidgets.QLabel(""))
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolCopperThieving.py b/appPlugins/ToolCopperThieving.py
index 99620926..cac5c94d 100644
--- a/appPlugins/ToolCopperThieving.py
+++ b/appPlugins/ToolCopperThieving.py
@@ -1288,7 +1288,7 @@ class ThievingUI:
self.layout.addWidget(FCLabel(""))
# ## Grid Layout
- i_grid_lay = FCGridLayout(v_spacing=3)
+ i_grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(i_grid_lay)
i_grid_lay.setColumnStretch(0, 0)
i_grid_lay.setColumnStretch(1, 1)
@@ -1313,7 +1313,7 @@ class ThievingUI:
i_grid_lay.addWidget(separator_line, 2, 0, 1, 2)
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
@@ -1464,7 +1464,7 @@ class ThievingUI:
self.dots_frame = QtWidgets.QFrame()
self.dots_frame.setContentsMargins(0, 0, 0, 0)
self.layout.addWidget(self.dots_frame)
- dots_grid = FCGridLayout(v_spacing=3)
+ dots_grid = FCGridLayout(v_spacing=5, h_spacing=3)
dots_grid.setColumnStretch(0, 0)
dots_grid.setColumnStretch(1, 1)
dots_grid.setContentsMargins(0, 0, 0, 0)
@@ -1504,7 +1504,7 @@ class ThievingUI:
self.squares_frame = QtWidgets.QFrame()
self.squares_frame.setContentsMargins(0, 0, 0, 0)
self.layout.addWidget(self.squares_frame)
- squares_grid = FCGridLayout(v_spacing=3)
+ squares_grid = FCGridLayout(v_spacing=5, h_spacing=3)
squares_grid.setColumnStretch(0, 0)
squares_grid.setColumnStretch(1, 1)
squares_grid.setContentsMargins(0, 0, 0, 0)
@@ -1544,7 +1544,7 @@ class ThievingUI:
self.lines_frame = QtWidgets.QFrame()
self.lines_frame.setContentsMargins(0, 0, 0, 0)
self.layout.addWidget(self.lines_frame)
- lines_grid = FCGridLayout(v_spacing=3)
+ lines_grid = FCGridLayout(v_spacing=5, h_spacing=3)
lines_grid.setColumnStretch(0, 0)
lines_grid.setColumnStretch(1, 1)
lines_grid.setContentsMargins(0, 0, 0, 0)
@@ -1596,7 +1596,7 @@ class ThievingUI:
self.layout.addWidget(self.fill_button)
# ## Grid Layout
- grid_lay_1 = FCGridLayout(v_spacing=3)
+ grid_lay_1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay_1)
grid_lay_1.setColumnStretch(0, 0)
grid_lay_1.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolCorners.py b/appPlugins/ToolCorners.py
index e97170c3..85f1b7d4 100644
--- a/appPlugins/ToolCorners.py
+++ b/appPlugins/ToolCorners.py
@@ -725,7 +725,7 @@ class CornersUI:
self.layout.addWidget(self.points_label)
# ## Grid Layout
- grid_loc = FCGridLayout(v_spacing=3)
+ grid_loc = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_loc)
# TOP LEFT
@@ -759,7 +759,7 @@ class CornersUI:
self.layout.addWidget(separator_line)
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolCutOut.py b/appPlugins/ToolCutOut.py
index 23357498..f3694d1e 100644
--- a/appPlugins/ToolCutOut.py
+++ b/appPlugins/ToolCutOut.py
@@ -2332,7 +2332,7 @@ class CutoutUI:
# self.tools_box.addWidget(FCLabel(''))
# Form Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
diff --git a/appPlugins/ToolDblSided.py b/appPlugins/ToolDblSided.py
index c77621e7..0f9dabaf 100644
--- a/appPlugins/ToolDblSided.py
+++ b/appPlugins/ToolDblSided.py
@@ -682,7 +682,7 @@ class DsidedUI:
self.title_box.addWidget(self.level)
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
grid_lay.setColumnStretch(0, 1)
grid_lay.setColumnStretch(1, 0)
self.tools_box.addLayout(grid_lay)
@@ -724,7 +724,7 @@ class DsidedUI:
# #############################################################################################################
# ########## BOUNDS OPERATION ###########################################################################
# #############################################################################################################
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
@@ -830,7 +830,7 @@ class DsidedUI:
# #############################################################################################################
# ########## MIRROR OPERATION ###########################################################################
# #############################################################################################################
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
self.tools_box.addLayout(grid1)
@@ -928,7 +928,7 @@ class DsidedUI:
grid1.addWidget(self.pick_hole_button, 12, 0, 1, 3)
# ## Grid Layout
- grid_lay3 = FCGridLayout(v_spacing=3)
+ grid_lay3 = FCGridLayout(v_spacing=5, h_spacing=3)
grid_lay3.setColumnStretch(0, 0)
grid_lay3.setColumnStretch(1, 1)
grid1.addLayout(grid_lay3, 14, 0, 1, 3)
@@ -984,7 +984,7 @@ class DsidedUI:
# #############################################################################################################
# ########## ALIGNMENT OPERATION ########################################################################
# #############################################################################################################
- grid4 = FCGridLayout(v_spacing=3)
+ grid4 = FCGridLayout(v_spacing=5, h_spacing=3)
grid4.setColumnStretch(0, 0)
grid4.setColumnStretch(1, 1)
self.tools_box.addLayout(grid4)
@@ -1050,7 +1050,7 @@ class DsidedUI:
grid4.addWidget(self.align_ref_label, 6, 0)
grid4.addWidget(self.align_ref_label_val, 6, 1)
- grid5 = FCGridLayout(v_spacing=3)
+ grid5 = FCGridLayout(v_spacing=5, h_spacing=3)
self.tools_box.addLayout(grid5)
# ## Alignment holes
diff --git a/appPlugins/ToolDistance.py b/appPlugins/ToolDistance.py
index ff8c83a1..20cd418b 100644
--- a/appPlugins/ToolDistance.py
+++ b/appPlugins/ToolDistance.py
@@ -577,7 +577,7 @@ class DistUI:
self.layout.addWidget(title_label)
# ## Form Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appPlugins/ToolDistanceMin.py b/appPlugins/ToolDistanceMin.py
index 79508c43..af4b6ca8 100644
--- a/appPlugins/ToolDistanceMin.py
+++ b/appPlugins/ToolDistanceMin.py
@@ -253,7 +253,7 @@ class DistMinUI:
self.layout.addWidget(title_label)
# ## Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appPlugins/ToolDrilling.py b/appPlugins/ToolDrilling.py
index 683a732b..54f3ad00 100644
--- a/appPlugins/ToolDrilling.py
+++ b/appPlugins/ToolDrilling.py
@@ -2292,7 +2292,7 @@ class DrillingUI:
self.title_box.addWidget(self.level)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
@@ -2402,7 +2402,7 @@ class DrillingUI:
# ################# GRID LAYOUT 3 ###############################
# #################################################################
- self.grid1 = FCGridLayout(v_spacing=3)
+ self.grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid1.setColumnStretch(0, 0)
self.grid1.setColumnStretch(1, 1)
self.exc_tools_box.addLayout(self.grid1)
@@ -2611,7 +2611,7 @@ class DrillingUI:
# #################################################################
# ################# COMMON PARAMETERS #############################
- self.grid3 = FCGridLayout(v_spacing=3)
+ self.grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid3.setColumnStretch(0, 0)
self.grid3.setColumnStretch(1, 1)
self.exc_tools_box.addLayout(self.grid3)
@@ -2817,7 +2817,7 @@ class DrillingUI:
self.exclusion_table.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows)
- grid_a1 = FCGridLayout(v_spacing=3)
+ grid_a1 = FCGridLayout(v_spacing=5, h_spacing=3)
grid_a1.setColumnStretch(0, 0)
grid_a1.setColumnStretch(1, 1)
self.exclusion_box.addLayout(grid_a1)
@@ -2888,7 +2888,7 @@ class DrillingUI:
# #################################################################
# ################# GRID LAYOUT 6 ###############################
# #################################################################
- self.grid4 = FCGridLayout(v_spacing=3)
+ self.grid4 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid4.setColumnStretch(0, 0)
self.grid4.setColumnStretch(1, 1)
self.tools_box.addLayout(self.grid4)
diff --git a/appPlugins/ToolEtchCompensation.py b/appPlugins/ToolEtchCompensation.py
index f0555db9..587b8314 100644
--- a/appPlugins/ToolEtchCompensation.py
+++ b/appPlugins/ToolEtchCompensation.py
@@ -328,7 +328,7 @@ class EtchUI:
self.tools_box.addWidget(title_label)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
diff --git a/appPlugins/ToolExtract.py b/appPlugins/ToolExtract.py
index 327ed213..e2a7cbba 100644
--- a/appPlugins/ToolExtract.py
+++ b/appPlugins/ToolExtract.py
@@ -916,7 +916,7 @@ class ExtractUI:
self.layout.addWidget(FCLabel(""))
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 1)
grid_lay.setColumnStretch(1, 0)
@@ -944,12 +944,12 @@ class ExtractUI:
grid_lay.addWidget(self.padt_label, 4, 0, 1, 2)
- pad_all_grid = FCGridLayout(v_spacing=3)
+ pad_all_grid = FCGridLayout(v_spacing=5, h_spacing=3)
pad_all_grid.setColumnStretch(0, 0)
pad_all_grid.setColumnStretch(1, 1)
grid_lay.addLayout(pad_all_grid, 5, 0, 1, 2)
- pad_grid = FCGridLayout(v_spacing=3)
+ pad_grid = FCGridLayout(v_spacing=5, h_spacing=3)
pad_grid.setColumnStretch(0, 0)
pad_all_grid.addLayout(pad_grid, 0, 0)
@@ -1031,7 +1031,7 @@ class ExtractUI:
grid_lay.addWidget(separator_line, 20, 0, 1, 2)
# ## Grid Layout
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid1)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
@@ -1079,7 +1079,7 @@ class ExtractUI:
self.ring_frame.setLayout(self.ring_box)
# ## Grid Layout
- grid2 = FCGridLayout(v_spacing=3)
+ grid2 = FCGridLayout(v_spacing=5, h_spacing=3)
grid2.setColumnStretch(0, 0)
grid2.setColumnStretch(1, 1)
self.ring_box.addLayout(grid2)
@@ -1158,7 +1158,7 @@ class ExtractUI:
grid2.addWidget(self.other_ring_label, 5, 0)
grid2.addWidget(self.other_ring_entry, 5, 1)
- grid3 = FCGridLayout(v_spacing=3)
+ grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid3)
grid3.setColumnStretch(0, 0)
grid3.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolFiducials.py b/appPlugins/ToolFiducials.py
index 73323c9b..9d6d81e8 100644
--- a/appPlugins/ToolFiducials.py
+++ b/appPlugins/ToolFiducials.py
@@ -895,7 +895,7 @@ class FidoUI:
self.layout.addWidget(separator_line)
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolFilm.py b/appPlugins/ToolFilm.py
index 636f8cb7..705b9750 100644
--- a/appPlugins/ToolFilm.py
+++ b/appPlugins/ToolFilm.py
@@ -1175,7 +1175,7 @@ class FilmUI:
self.title_box.addWidget(self.level)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.tools_box.addLayout(grid0)
grid0.setColumnStretch(0, 0)
@@ -1449,7 +1449,7 @@ class FilmUI:
self.punch_frame = QtWidgets.QFrame()
self.punch_frame.setContentsMargins(0, 0, 0, 0)
self.layout.addWidget(self.punch_frame)
- punch_grid = FCGridLayout(v_spacing=3)
+ punch_grid = FCGridLayout(v_spacing=5, h_spacing=3)
punch_grid.setContentsMargins(0, 0, 0, 0)
self.punch_frame.setLayout(punch_grid)
@@ -1499,7 +1499,7 @@ class FilmUI:
self.punch_size_label.hide()
self.punch_size_spinner.hide()
- self.grid1 = FCGridLayout(v_spacing=3)
+ self.grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(self.grid1)
self.grid1.setColumnStretch(0, 0)
self.grid1.setColumnStretch(1, 1)
diff --git a/appPlugins/ToolFollow.py b/appPlugins/ToolFollow.py
index 4c1d5d7d..61edee31 100644
--- a/appPlugins/ToolFollow.py
+++ b/appPlugins/ToolFollow.py
@@ -734,7 +734,7 @@ class FollowUI:
separator_line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
self.tools_box.addWidget(separator_line)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
diff --git a/appPlugins/ToolImage.py b/appPlugins/ToolImage.py
index ded54b6c..a81e037b 100644
--- a/appPlugins/ToolImage.py
+++ b/appPlugins/ToolImage.py
@@ -223,7 +223,7 @@ class ImageUI:
self.layout.addWidget(title_label)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appPlugins/ToolInvertGerber.py b/appPlugins/ToolInvertGerber.py
index 40c58ad6..37479b02 100644
--- a/appPlugins/ToolInvertGerber.py
+++ b/appPlugins/ToolInvertGerber.py
@@ -240,7 +240,7 @@ class InvertUI:
self.tools_frame.setLayout(self.tools_box)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
diff --git a/appPlugins/ToolIsolation.py b/appPlugins/ToolIsolation.py
index 37395311..ac94d1b9 100644
--- a/appPlugins/ToolIsolation.py
+++ b/appPlugins/ToolIsolation.py
@@ -3261,7 +3261,7 @@ class IsoUI:
"B = ball tip milling tool\n"
"V = v-shape milling tool"))
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
self.tools_box.addLayout(grid1)
@@ -3291,7 +3291,7 @@ class IsoUI:
# ############### Tool adding #################################
# #############################################################
- self.grid3 = FCGridLayout(v_spacing=3)
+ self.grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid3.setColumnStretch(0, 0)
self.grid3.setColumnStretch(1, 1)
self.tools_box.addLayout(self.grid3)
@@ -3332,7 +3332,7 @@ class IsoUI:
# #############################################################################################################
# ################################ Button Grid ###########################################################
# #############################################################################################################
- button_grid = FCGridLayout(v_spacing=3)
+ button_grid = FCGridLayout(v_spacing=5, h_spacing=3)
button_grid.setColumnStretch(0, 1)
button_grid.setColumnStretch(1, 0)
self.grid3.addLayout(button_grid, 7, 0, 1, 2)
diff --git a/appPlugins/ToolLevelling.py b/appPlugins/ToolLevelling.py
index b6044559..b4a6dbc8 100644
--- a/appPlugins/ToolLevelling.py
+++ b/appPlugins/ToolLevelling.py
@@ -1796,7 +1796,7 @@ class LevelUI:
self.al_box.setContentsMargins(0, 0, 0, 0)
self.al_frame.setLayout(self.al_box)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.al_box.addLayout(grid0)
@@ -2023,7 +2023,7 @@ class LevelUI:
# #############################################################################################################
# GRBL CONNECT
# #############################################################################################################
- grbl_conn_grid = FCGridLayout(v_spacing=3)
+ grbl_conn_grid = FCGridLayout(v_spacing=5, h_spacing=3)
grbl_conn_grid.setColumnStretch(0, 0)
grbl_conn_grid.setColumnStretch(1, 1)
grbl_conn_grid.setColumnStretch(2, 0)
@@ -2104,13 +2104,13 @@ class LevelUI:
# #############################################################################################################
# GRBL CONTROL
# #############################################################################################################
- grbl_ctrl_grid = FCGridLayout(v_spacing=3)
+ grbl_ctrl_grid = FCGridLayout(v_spacing=5, h_spacing=3)
grbl_ctrl_grid.setColumnStretch(0, 0)
grbl_ctrl_grid.setColumnStretch(1, 1)
grbl_ctrl_grid.setColumnStretch(2, 0)
self.gr_ctrl_tab_layout.addLayout(grbl_ctrl_grid)
- grbl_ctrl2_grid = FCGridLayout(v_spacing=3)
+ grbl_ctrl2_grid = FCGridLayout(v_spacing=5, h_spacing=3)
grbl_ctrl2_grid.setColumnStretch(0, 0)
grbl_ctrl2_grid.setColumnStretch(1, 1)
self.gr_ctrl_tab_layout.addLayout(grbl_ctrl2_grid)
@@ -2210,7 +2210,7 @@ class LevelUI:
# #############################################################################################################
# GRBL SENDER
# #############################################################################################################
- grbl_send_grid = FCGridLayout(v_spacing=3)
+ grbl_send_grid = FCGridLayout(v_spacing=5, h_spacing=3)
grbl_send_grid.setColumnStretch(0, 1)
grbl_send_grid.setColumnStretch(1, 0)
self.gr_send_tab_layout.addLayout(grbl_send_grid)
diff --git a/appPlugins/ToolMilling.py b/appPlugins/ToolMilling.py
index 2d2b864a..92b67379 100644
--- a/appPlugins/ToolMilling.py
+++ b/appPlugins/ToolMilling.py
@@ -3571,7 +3571,7 @@ class MillingUI:
self.title_box.addWidget(self.level)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
@@ -3706,7 +3706,7 @@ class MillingUI:
self.add_tool_frame = QtWidgets.QFrame()
self.add_tool_frame.setContentsMargins(0, 0, 0, 0)
grid0.addWidget(self.add_tool_frame, 14, 0, 1, 2)
- grid_tool = FCGridLayout(v_spacing=3)
+ grid_tool = FCGridLayout(v_spacing=5, h_spacing=3)
grid_tool.setColumnStretch(0, 0)
grid_tool.setColumnStretch(1, 1)
grid_tool.setContentsMargins(0, 0, 0, 0)
@@ -3731,7 +3731,7 @@ class MillingUI:
# #############################################################################################################
# ################################ Button Grid ###########################################################
# #############################################################################################################
- button_grid = FCGridLayout(v_spacing=3)
+ button_grid = FCGridLayout(v_spacing=5, h_spacing=3)
button_grid.setColumnStretch(0, 1)
button_grid.setColumnStretch(1, 0)
grid_tool.addLayout(button_grid, 5, 0, 1, 2)
@@ -3802,7 +3802,7 @@ class MillingUI:
# ################# GRID LAYOUT 3 ###############################
# #################################################################
- self.grid1 = FCGridLayout(v_spacing=3)
+ self.grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid1.setColumnStretch(0, 0)
self.grid1.setColumnStretch(1, 1)
self.exc_tools_box.addLayout(self.grid1)
@@ -4230,7 +4230,7 @@ class MillingUI:
# #################################################################
# ################# COMMON PARAMETERS #############################
- self.grid3 = FCGridLayout(v_spacing=3)
+ self.grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid3.setColumnStretch(0, 0)
self.grid3.setColumnStretch(1, 1)
self.exc_tools_box.addLayout(self.grid3)
@@ -4426,7 +4426,7 @@ class MillingUI:
self.exclusion_table.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows)
- grid_a1 = FCGridLayout(v_spacing=3)
+ grid_a1 = FCGridLayout(v_spacing=5, h_spacing=3)
grid_a1.setColumnStretch(0, 0)
grid_a1.setColumnStretch(1, 1)
self.exclusion_box.addLayout(grid_a1)
@@ -4497,7 +4497,7 @@ class MillingUI:
# #################################################################
# ################# GRID LAYOUT 6 ###############################
# #################################################################
- self.grid4 = FCGridLayout(v_spacing=3)
+ self.grid4 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid4.setColumnStretch(0, 0)
self.grid4.setColumnStretch(1, 1)
self.tools_box.addLayout(self.grid4)
diff --git a/appPlugins/ToolNCC.py b/appPlugins/ToolNCC.py
index 23526862..94d5414f 100644
--- a/appPlugins/ToolNCC.py
+++ b/appPlugins/ToolNCC.py
@@ -4142,7 +4142,7 @@ class NccUI:
self.title_box.addWidget(self.level)
# ## Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
@@ -4224,7 +4224,7 @@ class NccUI:
# "If it's not successful then the non-copper clearing will fail, too.\n"
# "- Clear -> the regular non-copper clearing."))
- grid1 = FCGridLayout(v_spacing=3)
+ grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
grid1.setColumnStretch(0, 0)
grid1.setColumnStretch(1, 1)
self.tools_box.addLayout(grid1)
@@ -4260,7 +4260,7 @@ class NccUI:
# ############### Tool selection ##############################
# #############################################################
- self.grid3 = FCGridLayout(v_spacing=3)
+ self.grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.tools_box.addLayout(self.grid3)
self.grid3.setColumnStretch(0, 0)
self.grid3.setColumnStretch(1, 1)
@@ -4300,7 +4300,7 @@ class NccUI:
# #############################################################################################################
# ################################ Button Grid ###########################################################
# #############################################################################################################
- button_grid = FCGridLayout(v_spacing=3)
+ button_grid = FCGridLayout(v_spacing=5, h_spacing=3)
button_grid.setColumnStretch(0, 1)
button_grid.setColumnStretch(1, 0)
self.grid3.addLayout(button_grid, 7, 0, 1, 2)
diff --git a/appPlugins/ToolOptimal.py b/appPlugins/ToolOptimal.py
index dc009ddd..2fdbc0ca 100644
--- a/appPlugins/ToolOptimal.py
+++ b/appPlugins/ToolOptimal.py
@@ -446,7 +446,7 @@ class OptimalUI:
self.layout.addWidget(FCLabel(""))
# ## Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appPlugins/ToolPaint.py b/appPlugins/ToolPaint.py
index 44feecd5..8812f069 100644
--- a/appPlugins/ToolPaint.py
+++ b/appPlugins/ToolPaint.py
@@ -2948,7 +2948,7 @@ class PaintUI:
self.title_box.addWidget(self.level)
# ## Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
@@ -3058,7 +3058,7 @@ class PaintUI:
# ###################### ADD A NEW TOOL ########################################
# ##############################################################################
- self.grid3 = FCGridLayout(v_spacing=3)
+ self.grid3 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid3.setColumnStretch(0, 0)
self.grid3.setColumnStretch(1, 1)
self.tools_box.addLayout(self.grid3)
@@ -3084,7 +3084,7 @@ class PaintUI:
# #############################################################################################################
# ################################ Button Grid ###########################################################
# #############################################################################################################
- button_grid = FCGridLayout(v_spacing=3)
+ button_grid = FCGridLayout(v_spacing=5, h_spacing=3)
button_grid.setColumnStretch(0, 1)
button_grid.setColumnStretch(1, 0)
self.grid3.addLayout(button_grid, 7, 0, 1, 2)
@@ -3138,7 +3138,7 @@ class PaintUI:
)
self.grid3.addWidget(self.tool_data_label, 12, 0, 1, 2)
- grid4 = FCGridLayout(v_spacing=3)
+ grid4 = FCGridLayout(v_spacing=5, h_spacing=3)
grid4.setColumnStretch(0, 0)
grid4.setColumnStretch(1, 1)
self.tools_box.addLayout(grid4)
diff --git a/appPlugins/ToolPanelize.py b/appPlugins/ToolPanelize.py
index cee9c326..e8e2926f 100644
--- a/appPlugins/ToolPanelize.py
+++ b/appPlugins/ToolPanelize.py
@@ -1127,7 +1127,7 @@ class PanelizeUI:
self.level.setCheckable(True)
self.title_box.addWidget(self.level)
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
diff --git a/appPlugins/ToolPcbWizard.py b/appPlugins/ToolPcbWizard.py
index 625327a3..a1164b92 100644
--- a/appPlugins/ToolPcbWizard.py
+++ b/appPlugins/ToolPcbWizard.py
@@ -416,7 +416,7 @@ class WizardUI:
self.layout.addWidget(FCLabel("%s:" % _("Load files")))
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
@@ -456,7 +456,7 @@ class WizardUI:
self.layout.addWidget(FCLabel("%s:" % _("Excellon Format")))
# Grid Layout
- grid01 = FCGridLayout(v_spacing=3)
+ grid01 = FCGridLayout(v_spacing=5, h_spacing=3)
grid01.setColumnStretch(0, 0)
grid01.setColumnStretch(1, 1)
self.layout.addLayout(grid01)
diff --git a/appPlugins/ToolPunchGerber.py b/appPlugins/ToolPunchGerber.py
index d4386310..cf63e016 100644
--- a/appPlugins/ToolPunchGerber.py
+++ b/appPlugins/ToolPunchGerber.py
@@ -1991,7 +1991,7 @@ class PunchUI:
self.layout.addWidget(FCLabel(""))
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 1)
grid_lay.setColumnStretch(1, 0)
@@ -2023,12 +2023,12 @@ class PunchUI:
grid_lay.addWidget(self.padt_label, 3, 0, 1, 2)
- pad_all_grid = FCGridLayout(v_spacing=3)
+ pad_all_grid = FCGridLayout(v_spacing=5, h_spacing=3)
pad_all_grid.setColumnStretch(0, 0)
pad_all_grid.setColumnStretch(1, 1)
grid_lay.addLayout(pad_all_grid, 5, 0, 1, 2)
- pad_grid = FCGridLayout(v_spacing=3)
+ pad_grid = FCGridLayout(v_spacing=5, h_spacing=3)
pad_grid.setColumnStretch(0, 0)
pad_all_grid.addLayout(pad_grid, 0, 0)
@@ -2110,7 +2110,7 @@ class PunchUI:
grid_lay.addWidget(separator_line, 10, 0, 1, 2)
# Grid Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
@@ -2192,7 +2192,7 @@ class PunchUI:
self.ring_box.addWidget(self.ring_label)
# ## Grid Layout
- self.grid1 = FCGridLayout(v_spacing=3)
+ self.grid1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid1.setColumnStretch(0, 0)
self.grid1.setColumnStretch(1, 1)
self.ring_box.addLayout(self.grid1)
diff --git a/appPlugins/ToolQRCode.py b/appPlugins/ToolQRCode.py
index d07efa72..f9d6f6c8 100644
--- a/appPlugins/ToolQRCode.py
+++ b/appPlugins/ToolQRCode.py
@@ -761,7 +761,7 @@ class QRcodeUI:
self.layout.addWidget(QtWidgets.QLabel(''))
# ## Grid Layout
- i_grid_lay = FCGridLayout(v_spacing=3)
+ i_grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(i_grid_lay)
i_grid_lay.setColumnStretch(0, 0)
i_grid_lay.setColumnStretch(1, 1)
@@ -803,7 +803,7 @@ class QRcodeUI:
i_grid_lay.addWidget(separator_line, 7, 0, 1, 2)
# ## Grid Layout
- grid_lay = FCGridLayout(v_spacing=3)
+ grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid_lay)
grid_lay.setColumnStretch(0, 0)
grid_lay.setColumnStretch(1, 1)
@@ -926,7 +926,7 @@ class QRcodeUI:
self.export_frame = QtWidgets.QFrame()
self.export_frame.setContentsMargins(0, 0, 0, 0)
self.layout.addWidget(self.export_frame)
- self.export_lay = FCGridLayout(v_spacing=3)
+ self.export_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.export_lay.setContentsMargins(0, 0, 0, 0)
self.export_frame.setLayout(self.export_lay)
self.export_lay.setColumnStretch(0, 0)
diff --git a/appPlugins/ToolRulesCheck.py b/appPlugins/ToolRulesCheck.py
index adbaad1d..1f44bf81 100644
--- a/appPlugins/ToolRulesCheck.py
+++ b/appPlugins/ToolRulesCheck.py
@@ -1193,7 +1193,7 @@ class RulesUI:
self.layout.addWidget(title_label)
# Form Layout
- self.grid_layout = FCGridLayout(v_spacing=3)
+ self.grid_layout = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(self.grid_layout)
self.grid_layout.setColumnStretch(0, 0)
@@ -1398,7 +1398,7 @@ class RulesUI:
self.layout.addWidget(self.all_cb)
# Form Layout
- self.grid_lay1 = FCGridLayout(v_spacing=3)
+ self.grid_lay1 = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid_lay1.setColumnStretch(0, 0)
self.grid_lay1.setColumnStretch(1, 1)
self.layout.addLayout(self.grid_lay1)
diff --git a/appPlugins/ToolSolderPaste.py b/appPlugins/ToolSolderPaste.py
index 86a24ac6..cc19bd75 100644
--- a/appPlugins/ToolSolderPaste.py
+++ b/appPlugins/ToolSolderPaste.py
@@ -1192,7 +1192,7 @@ class SolderUI:
self.layout.addWidget(title_label)
# ## Form Layout
- obj_form_layout = FCGridLayout(v_spacing=3)
+ obj_form_layout = FCGridLayout(v_spacing=5, h_spacing=3)
obj_form_layout.setColumnStretch(0, 0)
obj_form_layout.setColumnStretch(1, 1)
self.layout.addLayout(obj_form_layout)
@@ -1244,7 +1244,7 @@ class SolderUI:
"is the width of the solder paste dispensed."))
# ### Add a new Tool ## ##
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.layout.addLayout(grid0)
@@ -1291,7 +1291,7 @@ class SolderUI:
self.gcode_frame.setLayout(self.tool_box)
# Parameter Layout
- self.param_grid = FCGridLayout(v_spacing=3)
+ self.param_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.tool_box.addLayout(self.param_grid)
step1_lbl = QtWidgets.QLabel("%s:" % _('Parameters'))
@@ -1503,7 +1503,7 @@ class SolderUI:
self.param_grid.addWidget(separator_line, 30, 0, 1, 2)
# Buttons Grid
- self.button_grid = FCGridLayout(v_spacing=3)
+ self.button_grid = FCGridLayout(v_spacing=5, h_spacing=3)
self.button_grid.setColumnStretch(0, 0)
self.button_grid.setColumnStretch(1, 1)
self.tool_box.addLayout(self.button_grid)
diff --git a/appPlugins/ToolSub.py b/appPlugins/ToolSub.py
index c8f21ff8..fce0d831 100644
--- a/appPlugins/ToolSub.py
+++ b/appPlugins/ToolSub.py
@@ -813,7 +813,7 @@ class SubUI:
self.tools_frame.setLayout(self.tools_box)
# Form Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
self.tools_box.addLayout(grid0)
diff --git a/appPlugins/ToolTransform.py b/appPlugins/ToolTransform.py
index a72b5bed..12f0977f 100644
--- a/appPlugins/ToolTransform.py
+++ b/appPlugins/ToolTransform.py
@@ -598,7 +598,7 @@ class TransformUI:
self.layout.addWidget(FCLabel(""))
# ## Layout
- grid0 = FCGridLayout(v_spacing=3)
+ grid0 = FCGridLayout(v_spacing=5, h_spacing=3)
self.layout.addLayout(grid0)
grid0.setColumnStretch(0, 0)
grid0.setColumnStretch(1, 1)
diff --git a/app_Main.py b/app_Main.py
index 8d3b6fde..0ee9a676 100644
--- a/app_Main.py
+++ b/app_Main.py
@@ -3421,7 +3421,7 @@ class App(QtCore.QObject):
},
]
- self.prog_grid_lay = FCGridLayout(v_spacing=3)
+ self.prog_grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.prog_grid_lay.setHorizontalSpacing(20)
self.prog_grid_lay.setColumnStretch(0, 0)
self.prog_grid_lay.setColumnStretch(2, 1)
@@ -3464,7 +3464,7 @@ class App(QtCore.QObject):
self.prog_grid_lay.addWidget(QtWidgets.QLabel(''), line, 0)
line += 1
- self.translator_grid_lay = FCGridLayout(v_spacing=3)
+ self.translator_grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.translator_grid_lay.setColumnStretch(0, 0)
self.translator_grid_lay.setColumnStretch(1, 0)
self.translator_grid_lay.setColumnStretch(2, 1)
@@ -3684,7 +3684,7 @@ class App(QtCore.QObject):
self.intro_tab_layout.setContentsMargins(2, 2, 2, 2)
tab_widget.addTab(self.intro_tab, _("Contribute"))
- self.grid_lay = FCGridLayout(v_spacing=3)
+ self.grid_lay = FCGridLayout(v_spacing=5, h_spacing=3)
self.grid_lay.setHorizontalSpacing(20)
self.grid_lay.setColumnStretch(0, 0)
self.grid_lay.setColumnStretch(1, 1)