Skip to content

Commit

Permalink
wxGUI/iclass: fix zoom to scatter plot extend (OSGeo#3184)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi committed Sep 26, 2023
1 parent 6060b4c commit 093262f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gui/wxpython/iscatt/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,8 @@ def ContexMenu(self, event):
def ShowMenu(self, menu):
self.plot.PopupMenu(menu)
menu.Destroy()
self.plot.ReleaseMouse()
if self.plot.HasCapture():
self.plot.ReleaseMouse()


class PolygonDrawer:
Expand Down

0 comments on commit 093262f

Please sign in to comment.