Where does QDoubleSpinBox require that you set the min and max? w = QtGui.QWidget() w.resize(300,200) layout = QtGui.QVBoxLayout(w) spin = QtGui.QDoubleSpinBox() layout.addWidget(spin) w.show()
I don't see how its different than the maya native float slider. On Mon, Aug 27, 2012 at 9:06 AM, vux <[email protected]> wrote: > In PyQt QSpinBox we need to setMaximum() and setMinimum(). > For example i need translate object about axisX with QSpinBox. Whereto get > maximum range ? (maya native floatControl not need to set min/max) > > -- > view archives: http://groups.google.com/group/python_inside_maya > change your subscription settings: > http://groups.google.com/group/python_inside_maya/subscribe -- view archives: http://groups.google.com/group/python_inside_maya change your subscription settings: http://groups.google.com/group/python_inside_maya/subscribe
