Skip to content

Commit

Permalink
add missing _process_msg method to GeoPolyEditCallback (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt authored Nov 24, 2021
1 parent 3f5504a commit 236d583
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions geoviews/plotting/bokeh/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,10 @@ def _update_cds_vdims(self, data):

class GeoPolyEditCallback(PolyEditCallback):

def _process_msg(self, msg):
msg = super(GeoPolyEditCallback, self)._process_msg(msg)
return project_poly(self, msg)

def _update_cds_vdims(self, data):
if isinstance(self.source, Shape):
return
Expand Down

0 comments on commit 236d583

Please sign in to comment.