IDE: one more consequence of wxPython's 3 to 4 version bump wxPython4
authorEdouard Tisserant <edouard.tisserant@gmail.com>
Wed, 10 Aug 2022 16:44:58 +0200
branchwxPython4
changeset 3575 cbf99c4122bd
parent 3574 889cbde22ec4
child 3580 0c96269bf63b
IDE: one more consequence of wxPython's 3 to 4 version bump
controls/LogViewer.py
--- a/controls/LogViewer.py	Tue Aug 09 09:33:26 2022 +0200
+++ b/controls/LogViewer.py	Wed Aug 10 16:44:58 2022 +0200
@@ -706,7 +706,7 @@
         if message is not None:
             menu = wx.Menu(title='')
 
-            menu_entry = menu.Append(help='', id=wx.ID_ANY, kind=wx.ITEM_NORMAL, text=_("Copy"))
+            menu_entry = menu.Append(wx.ID_ANY, _("Copy"))
             self.Bind(wx.EVT_MENU, self.GetCopyMessageToClipboardFunction(message), menu_entry)
 
             self.MessagePanel.PopupMenu(menu)