summaryrefslogtreecommitdiff
path: root/gr-qtgui/python/qtgui/range.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2015-04-03 12:47:38 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2015-04-03 12:47:38 -0700
commit83bcd3df68e12862fe2750305925054631a5445c (patch)
treebbfb216ce2665161c56bf4825e3c5a935f248152 /gr-qtgui/python/qtgui/range.py
parenta2376bee62026e30ce5b938673d4f8bf4a4f13d5 (diff)
parent8939e2e400b9ca2187c8618d986055bb0346ac07 (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-xgr-qtgui/python/qtgui/range.py16
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):