Skip to content

Commit

Permalink
nouislider pr merge conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
ibdafna committed Feb 8, 2020
1 parent 8fbc773 commit 4dab951
Show file tree
Hide file tree
Showing 8 changed files with 750 additions and 318 deletions.
6 changes: 3 additions & 3 deletions ipywidgets/widgets/widget_float.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class FloatSlider(_BoundedFloat):
"""
_view_name = Unicode('FloatSliderView').tag(sync=True)
_model_name = Unicode('FloatSliderModel').tag(sync=True)
step = CFloat(0.1, help="Minimum step to increment the value").tag(sync=True)
step = CFloat(0.1, allow_none=True, help="Minimum step to increment the value").tag(sync=True)
orientation = CaselessStrEnum(values=['horizontal', 'vertical'],
default_value='horizontal', help="Vertical or horizontal.").tag(sync=True)
readout = Bool(True, help="Display the current value of the slider next to it.").tag(sync=True)
Expand Down Expand Up @@ -207,7 +207,7 @@ class FloatLogSlider(_BoundedLogFloat):
"""
_view_name = Unicode('FloatLogSliderView').tag(sync=True)
_model_name = Unicode('FloatLogSliderModel').tag(sync=True)
step = CFloat(0.1, help="Minimum step in the exponent to increment the value").tag(sync=True)
step = CFloat(0.1, allow_none=True, help="Minimum step in the exponent to increment the value").tag(sync=True)
orientation = CaselessStrEnum(values=['horizontal', 'vertical'],
default_value='horizontal', help="Vertical or horizontal.").tag(sync=True)
readout = Bool(True, help="Display the current value of the slider next to it.").tag(sync=True)
Expand Down Expand Up @@ -350,7 +350,7 @@ class FloatRangeSlider(_BoundedFloatRange):
"""
_view_name = Unicode('FloatRangeSliderView').tag(sync=True)
_model_name = Unicode('FloatRangeSliderModel').tag(sync=True)
step = CFloat(0.1, help="Minimum step to increment the value").tag(sync=True)
step = CFloat(0.1, allow_none=True, help="Minimum step to increment the value").tag(sync=True)
orientation = CaselessStrEnum(values=['horizontal', 'vertical'],
default_value='horizontal', help="Vertical or horizontal.").tag(sync=True)
readout = Bool(True, help="Display the current value of the slider next to it.").tag(sync=True)
Expand Down
Loading

0 comments on commit 4dab951

Please sign in to comment.