Add popup on textctrl, even tough it does not work for MacOS, it does work for linux/windows.

This commit is contained in:
daid 2012-04-10 15:49:09 +02:00
parent 0121b2c384
commit 7fb30600a2

View File

@ -132,6 +132,9 @@ class SettingRow():
sizer.Add(self.ctrl, (x,y+1), flag=wx.ALIGN_BOTTOM|wx.EXPAND) sizer.Add(self.ctrl, (x,y+1), flag=wx.ALIGN_BOTTOM|wx.EXPAND)
sizer.SetRows(x+1) sizer.SetRows(x+1)
self.ctrl.Bind(wx.EVT_ENTER_WINDOW, self.OnMouseEnter)
self.ctrl.Bind(wx.EVT_LEAVE_WINDOW, self.OnMouseExit)
self.defaultBGColour = self.ctrl.GetBackgroundColour() self.defaultBGColour = self.ctrl.GetBackgroundColour()
panel.main.settingControlList.append(self) panel.main.settingControlList.append(self)