From d47dc0687eec4ae6345c2e02b0b2f9c494d1c45e Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby Date: Fri, 14 Nov 2025 15:56:24 +0100 Subject: [PATCH] GeoTIFF: Minor change. --- src/View/GeoTIFF/Edit/Window.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/View/GeoTIFF/Edit/Window.py b/src/View/GeoTIFF/Edit/Window.py index 5cb26d60..47ad9e78 100644 --- a/src/View/GeoTIFF/Edit/Window.py +++ b/src/View/GeoTIFF/Edit/Window.py @@ -148,11 +148,8 @@ class EditGeoTIFFWindow(PamhyrWindow): self._reset_spinbox(key) def _reset_spinbox(self, key): - print(f"_reset_spinbox {key}") - self.set_double_spin_box( - f"doubleSpinBox_{key}", - self._values_default[key] + f"doubleSpinBox_{key}", self._values_default[key] ) def setup_connection(self): @@ -190,7 +187,6 @@ class EditGeoTIFFWindow(PamhyrWindow): ) def update_values_from_spinbox(self, key): - print(f"update_values_from_spinbox {key}") self._values[key] = self.get_double_spin_box(f"doubleSpinBox_{key}") self._plot_img.set_extent(list(self._values.values()))