From 96144d88ee0557806f67131b55c1b2e358fe3b8b Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby Date: Thu, 17 Apr 2025 11:13:38 +0200 Subject: [PATCH] Sediment calibration: Minor change. --- View/sediment_calibration_tab.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/View/sediment_calibration_tab.py b/View/sediment_calibration_tab.py index 18e4da8..73f8858 100644 --- a/View/sediment_calibration_tab.py +++ b/View/sediment_calibration_tab.py @@ -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")