Fix bug debug instance button not visible in PouInstanceVariablesPanel when instance path is too long
--- a/controls/PouInstanceVariablesPanel.py Tue Sep 11 01:06:59 2012 +0200
+++ b/controls/PouInstanceVariablesPanel.py Tue Sep 11 16:30:42 2012 +0200
@@ -42,7 +42,7 @@
self.Bind(wx.EVT_BUTTON, self.OnParentButtonClick,
self.ParentButton)
- self.InstanceChoice = wx.ComboBox(self, style=wx.CB_READONLY)
+ self.InstanceChoice = wx.ComboBox(self, size=wx.Size(0, 0), style=wx.CB_READONLY)
self.Bind(wx.EVT_COMBOBOX, self.OnInstanceChoiceChanged,
self.InstanceChoice)
self.InstanceChoice.Bind(wx.EVT_LEFT_DOWN, self.OnInstanceChoiceLeftDown)