Fixes ticket:68, making 'Auto' the default trigger option.
[debian/gnuradio] / 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)