Fixes ticket:68, making 'Auto' the default trigger option.
authorjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>
Tue, 19 Sep 2006 00:25:13 +0000 (00:25 +0000)
committerjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>
Tue, 19 Sep 2006 00:25:13 +0000 (00:25 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3572 221aa14e-8319-0410-a670-987f0aec2ac5

gr-wxgui/src/python/scopesink.py

index e1c9382ab3936b6d2293a2e59fc72497e3cca8a7..14df9b2657f3154080b67c47d99b0b6a3dab8294 100755 (executable)
@@ -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)