diff --git a/src/wxUI/view.py b/src/wxUI/view.py index d574b760..a000a316 100644 --- a/src/wxUI/view.py +++ b/src/wxUI/view.py @@ -19,7 +19,6 @@ class mainFrame(wx.Frame): self.trends = app.Append(wx.NewId(), _(u"View &trending topics")) self.lists = app.Append(wx.NewId(), _(u"&Lists manager")) self.lists.Enable(False) - self.sounds_tutorial = app.Append(wx.NewId(), _(u"Sounds &tutorial")) self.keystroke_editor = app.Append(wx.NewId(), _(u"&Edit keystrokes")) self.account_settings = app.Append(wx.NewId(), _(u"Account se&ttings")) self.prefs = app.Append(wx.ID_PREFERENCES, _(u"&Global settings")) @@ -70,6 +69,7 @@ class mainFrame(wx.Frame): help = wx.Menu() self.doc = help.Append(-1, _(u"&Documentation")) self.doc.Enable(False) + self.sounds_tutorial = help.Append(wx.NewId(), _(u"Sounds &tutorial")) self.changelog = help.Append(wx.NewId(), _(u"&What's new in this version?")) self.changelog.Enable(False) self.check_for_updates = help.Append(wx.NewId(), _(u"&Check for updates"))