Skip to content

Commit

Permalink
fixed bug with params propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide-sd committed Apr 13, 2024
1 parent db0954f commit 8333ddc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spb/graphics/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ def linspace(start, end, n):

kw = wf_kwargs.copy()
if s.is_interactive:
kw["params"] = s.params.copy()
# pass in the original parameters provided by the user, which
# might contain RangeSlider...
kw["params"] = s._original_params.copy()

if s.is_parametric:
(x, sx, ex), (y, sy, ey) = s.ranges
Expand Down

0 comments on commit 8333ddc

Please sign in to comment.