You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if these are related or not but in implementing the Gui wrapping for the ctkDoubleRangeSlider the following issues have come up. ctkDoubleRangeSlider does not expose setRange in python
But both the ctkRangeWidget and the ctkDoubleRangeSlider expose the setValues method this method though doesn't seem to accept negative values, e.g in testing when calling setValue(-1, 10) the range would result in [0,10]. The ctkRangeWidget::setRange() does support ranges on the negative side, but neither setValue() function does
From the documentation it is hard to tell the difference between the setValues and the setRange function
The text was updated successfully, but these errors were encountered:
I don't know if these are related or not but in implementing the Gui wrapping for the
ctkDoubleRangeSlider
the following issues have come up.ctkDoubleRangeSlider
does not exposesetRange
in pythonBut both the
ctkRangeWidget
and thectkDoubleRangeSlider
expose thesetValues
method this method though doesn't seem to accept negative values, e.g in testing when callingsetValue(-1, 10)
the range would result in [0,10]. ThectkRangeWidget::setRange()
does support ranges on the negative side, but neithersetValue()
function doesFrom the documentation it is hard to tell the difference between the
setValues
and thesetRange
functionThe text was updated successfully, but these errors were encountered: