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
as discovered by @raulbola in pymmcore-plus/napari-micromanager#293 (comment), the Kinetix camera (and probably others) has a property PreampOffLimit with a 0 and 4294967295 (uint32) range. That extends beyond the 2147483647 (int32) supported by QSlider, and therefore the QLabeledSlider provided by superqt.
We could either
use a QLabeledDoubleSlider under the hood and cast to/from integer
make a PR to superqt adding a QLargeIntSlider and a QLabeledLargeIntSlider
The text was updated successfully, but these errors were encountered:
as discovered by @raulbola in pymmcore-plus/napari-micromanager#293 (comment), the Kinetix camera (and probably others) has a property
PreampOffLimit
with a 0 and 4294967295 (uint32) range. That extends beyond the 2147483647 (int32) supported by QSlider, and therefore theQLabeledSlider
provided by superqt.We could either
QLabeledDoubleSlider
under the hood and cast to/from integerQLargeIntSlider
and aQLabeledLargeIntSlider
The text was updated successfully, but these errors were encountered: