From a65ef6fb795d2b43c79f54ea7bdee874ab51bfce Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 6 Mar 2006 21:09:46 +0000 Subject: [PATCH] Use EVT_CONTEXT_MENU git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/PopupMenu.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/wxPython/demo/PopupMenu.py b/wxPython/demo/PopupMenu.py index 45925f22d5..837e9c27d4 100644 --- a/wxPython/demo/PopupMenu.py +++ b/wxPython/demo/PopupMenu.py @@ -31,8 +31,6 @@ class TestPanel(wx.Panel): t = wx.StaticText(self, -1, "PopupMenu") t.SetFont(bf) box.Add(t, 0, wx.CENTER|wx.ALL, 5) - self.Bind(wx.EVT_RIGHT_UP, self.OnRightClick) - box.Add(wx.StaticLine(self, -1), 0, wx.EXPAND) box.Add((10,20)) @@ -40,14 +38,15 @@ class TestPanel(wx.Panel): t = wx.StaticText(self, -1, text) t.SetFont(nf) box.Add(t, 0, wx.CENTER|wx.ALL, 5) + t.Bind(wx.EVT_CONTEXT_MENU, self.OnContextMenu) self.SetSizer(box) - self.Bind(wx.EVT_RIGHT_UP, self.OnRightClick) + self.Bind(wx.EVT_CONTEXT_MENU, self.OnContextMenu) - def OnRightClick(self, event): - self.log.WriteText("OnRightClick\n") + def OnContextMenu(self, event): + self.log.WriteText("OnContextMenu\n") # only do this part the first time so the events are only bound once # -- 2.45.2