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()))