I'm trying to create a QSpinBox that accepts all numbers, but I'm having some trouble with hte maximums
sbox = QSpinBox(self)
sbox.setRange(-sys.maxint/88-1, sys.maxint/86)
sbox.setValue(int(setting.value))
I wanted to just use sbox.setRange(-sys.maxint-1, sys.maxint)
but then I couldn't enter anything, if I increase the range any more than above the whole spinner freaks out. Anybody knows why?