Sediment calibration: Minor change.
parent
3c2db523ac
commit
96144d88ee
|
|
@ -95,8 +95,6 @@ class SedimentCalibrationTab(QWidget):
|
|||
self.horizontalLayoutBottom = QHBoxLayout()
|
||||
self.verticalLayoutMain.addLayout(self.horizontalLayoutBottom, 5)
|
||||
|
||||
# --------------------------------------------------------------------------------------------------------------
|
||||
|
||||
self.groupbox_acoustic_data = QGroupBox()
|
||||
self.horizontalLayoutTop.addWidget(self.groupbox_acoustic_data, 6)
|
||||
|
||||
|
|
@ -356,11 +354,17 @@ class SedimentCalibrationTab(QWidget):
|
|||
# +++++++++++++++++++++++++++++++++++++
|
||||
# +++ Groupbox sediment calibration +++
|
||||
|
||||
self.groupbox_sediment_calibration.setTitle("Step 3 : Compute Calibration")
|
||||
self.verticalLayout_groupbox_sediment_calibration = QVBoxLayout(self.groupbox_sediment_calibration)
|
||||
self.groupbox_sediment_calibration\
|
||||
.setTitle("Step 3 : Compute Calibration")
|
||||
|
||||
self.verticalLayout_groupbox_sediment_calibration = QVBoxLayout(
|
||||
self.groupbox_sediment_calibration
|
||||
)
|
||||
|
||||
self.horizontalLayout_groupboxes_Import_Compute_Calibration = QHBoxLayout()
|
||||
self.verticalLayout_groupbox_sediment_calibration.addLayout(self.horizontalLayout_groupboxes_Import_Compute_Calibration)
|
||||
self.verticalLayout_groupbox_sediment_calibration.addLayout(
|
||||
self.horizontalLayout_groupboxes_Import_Compute_Calibration
|
||||
)
|
||||
|
||||
self._setup_widgets_calibration_import_file()
|
||||
self._setup_widgets_calibration_compute()
|
||||
|
|
@ -855,10 +859,6 @@ class SedimentCalibrationTab(QWidget):
|
|||
self.fit_FCB_profile_with_linear_regression_and_compute_alphaS
|
||||
)
|
||||
|
||||
# ==============================================================================================================
|
||||
# ----------------------------------- Functions for Signal processing Tab --------------------------------------
|
||||
# ==============================================================================================================
|
||||
|
||||
@trace
|
||||
def full_update(self):
|
||||
logger.debug(f"{__name__}: Update")
|
||||
|
|
|
|||
Loading…
Reference in New Issue