diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-03 12:47:38 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-03 12:47:38 -0700 |
commit | 83bcd3df68e12862fe2750305925054631a5445c (patch) | |
tree | bbfb216ce2665161c56bf4825e3c5a935f248152 /gr-qtgui/python/qtgui/range.py | |
parent | a2376bee62026e30ce5b938673d4f8bf4a4f13d5 (diff) | |
parent | 8939e2e400b9ca2187c8618d986055bb0346ac07 (diff) |
Merge branch 'master' into next
Conflicts:
gr-atsc/include/gnuradio/atsc/field_sync_demux.h
Diffstat (limited to 'gr-qtgui/python/qtgui/range.py')
-rwxr-xr-x | gr-qtgui/python/qtgui/range.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gr-qtgui/python/qtgui/range.py b/gr-qtgui/python/qtgui/range.py index 63d64d4543..566170dde4 100755 --- a/gr-qtgui/python/qtgui/range.py +++ b/gr-qtgui/python/qtgui/range.py @@ -102,14 +102,18 @@ class RangeWidget(QtGui.QWidget): self.setFocusPolicy(QtCore.Qt.NoFocus) self.setRange(0, ranges.ds_steps-1) self.setValue(ranges.default) - self.setPageStep(ranges.step) - self.setSingleStep(ranges.step) - self.setTickPosition(1) - self.setTickInterval(ranges.ds_steps) - self.setTracking(False) - self.setInvertedControls(True) + self.setPageStep(1) + self.setSingleStep(1) + self.setTickPosition(2) self.valueChanged.connect(slot) + def mousePressEvent(self, event): + if((event.button() == QtCore.Qt.LeftButton)): + newVal = self.minimum() + ((self.maximum()-self.minimum()) * event.x()) / self.width() + self.setValue(newVal) + event.accept() + QtGui.QSlider.mousePressEvent(self, event) + class Counter(QtGui.QDoubleSpinBox): """ Creates the range using a counter """ def __init__(self, parent, ranges, slot): |