From 3678776776861ec568bfa4e7c60737fcb4012996 Mon Sep 17 00:00:00 2001
From: ldam <ldam@passcal.nmt.edu>
Date: Wed, 31 Jul 2024 11:44:41 -0600
Subject: [PATCH] reset self.zoom_marker1_shown when zooming out

---
 .../view/plotting/plotting_widget/plotting_widget.py             | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting_widget.py b/sohstationviewer/view/plotting/plotting_widget/plotting_widget.py
index b66fa0b8..dfca93e2 100644
--- a/sohstationviewer/view/plotting/plotting_widget/plotting_widget.py
+++ b/sohstationviewer/view/plotting/plotting_widget/plotting_widget.py
@@ -364,6 +364,7 @@ class PlottingWidget(QtWidgets.QScrollArea):
             self.min_x, self.max_x = self.zoom_minmax_list[-2]
             self.zoom_minmax_list.pop()
             self.set_lim(is_zoom_in=False)
+        self.zoom_marker1_shown = False
         self.zoom_marker1.set_visible(False)
         self.zoom_marker2.set_visible(False)
         self.plotting_axes.canvas.draw()
-- 
GitLab