Skip to content

Commit

Permalink
Fix ordering of enumeration values
Browse files Browse the repository at this point in the history
This seemed to keep the initial value of viewport_update_policy from
synchronizing
  • Loading branch information
jonmmease committed Aug 5, 2019
1 parent f12c505 commit ccf45a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/models/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class PlotlyPlot(LayoutDOM):
clickannotation_data = Dict(String, Any)
selected_data = Dict(String, Any)
viewport = Dict(String, Any)
viewport_update_policy = Enum("continuous", "mouseup", "throttle")
viewport_update_policy = Enum( "mouseup", "continuous", "throttle")
viewport_update_throttle = Int()
_render_count = Int()

Expand Down

0 comments on commit ccf45a8

Please sign in to comment.