summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>2006-09-19 00:25:13 +0000
committerjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>2006-09-19 00:25:13 +0000
commit8030ff9a8451d4320ba46aad916487a95ce8e7ae (patch)
tree023c761c85c78c9886e81dbad41ae02969505c7c
parent8fd1bbd2be7a5d6f1f160e1ac5f64faacab6a7b2 (diff)
Fixes ticket:68, making 'Auto' the default trigger option.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3572 221aa14e-8319-0410-a670-987f0aec2ac5
-rwxr-xr-xgr-wxgui/src/python/scopesink.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-wxgui/src/python/scopesink.py b/gr-wxgui/src/python/scopesink.py
index e1c9382ab3..14df9b2657 100755
--- a/gr-wxgui/src/python/scopesink.py
+++ b/gr-wxgui/src/python/scopesink.py
@@ -310,7 +310,7 @@ class scope_window (wx.Panel):
ctrlbox.Add (self.trig_chan_choice, 0, wx.ALIGN_CENTER)
self.trig_mode_choice = wx.Choice (self, 1005,
- choices = ['Pos', 'Neg', 'Auto'])
+ choices = ['Auto', 'Pos', 'Neg'])
self.trig_mode_choice.SetToolTipString ("Select trigger slope or Auto (untriggered roll)")
wx.EVT_CHOICE (self, 1005, self.trig_mode_choice_event)
ctrlbox.Add (self.trig_mode_choice, 0, wx.ALIGN_CENTER)