diff -r 598ff0043ad3 -r b64dcc1a011f controls/PouInstanceVariablesPanel.py --- a/controls/PouInstanceVariablesPanel.py Mon Jun 03 22:48:42 2013 +0200 +++ b/controls/PouInstanceVariablesPanel.py Tue Jun 04 09:12:03 2013 +0200 @@ -174,7 +174,7 @@ bitmap=GetBitmap("debug_instance"), size=wx.Size(28, 28), style=wx.NO_BORDER) self.Bind(wx.EVT_BUTTON, self.GenDebugButtonCallback(var_infos), debug_button) - debug_button.Bind(wx.EVT_RIGHT_UP, self.GenDebugButtonRightClickCallback(var_infos)) + debug_button.Bind(wx.EVT_LEFT_DCLICK, self.GenDebugButtonDClickCallback(var_infos)) buttons.append(debug_button) button_num = len(buttons) @@ -280,8 +280,8 @@ event.Skip() return DebugButtonCallback - def GenDebugButtonRightClickCallback(self, infos): - def DebugButtonCallback(event): + def GenDebugButtonDClickCallback(self, infos): + def DebugButtonDClickCallback(event): if self.InstanceChoice.GetSelection() != -1: if infos["class"] in ITEMS_VARIABLE: self.ParentWindow.AddDebugVariable( @@ -290,7 +290,7 @@ force=True, graph=True) event.Skip() - return DebugButtonCallback + return DebugButtonDClickCallback def GenGraphButtonCallback(self, infos): def GraphButtonCallback(event):