From: jcorgan Date: Tue, 19 Sep 2006 00:25:13 +0000 (+0000) Subject: Fixes ticket:68, making 'Auto' the default trigger option. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=8030ff9a8451d4320ba46aad916487a95ce8e7ae;p=debian%2Fgnuradio Fixes ticket:68, making 'Auto' the default trigger option. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3572 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/gr-wxgui/src/python/scopesink.py b/gr-wxgui/src/python/scopesink.py index e1c9382a..14df9b26 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)