diff -r 9a42f12a973e -r 9cb4d1392baf BeremizIDE.py --- a/BeremizIDE.py Tue Jun 06 13:13:57 2017 +0300 +++ b/BeremizIDE.py Tue Jun 06 14:21:53 2017 +0300 @@ -272,6 +272,13 @@ self._RecursiveAddMenuItems(parent, GetAddMenuItems()) def _init_coll_HelpMenu_Items(self, parent): + handler=lambda event: { + wx.MessageBox(version.GetCommunityHelpMsg(), _(u'Community support'), wx.OK | wx.ICON_INFORMATION) + } + id = wx.NewId() + parent.Append(help='', id=id, kind=wx.ITEM_NORMAL, text=_(u'Community support')) + self.Bind(wx.EVT_MENU, handler, id=id) + parent.Append(help='', id=wx.ID_ABOUT, kind=wx.ITEM_NORMAL, text=_(u'About')) self.Bind(wx.EVT_MENU, self.OnAboutMenu, id=wx.ID_ABOUT)