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 c5f57f3 commit 12bc350
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 @@ -619,7 +619,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 12bc350

Please sign in to comment.