- changed the spacings in the new custom Grid layout
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user