# HG changeset patch # User Laurent Bessard # Date 1369387055 -7200 # Node ID dff0a4e408084064743d39fed5eb53e8b26a4835 # Parent a506e4de8f84c64cb8fa6eaf36c562341191777a Fixed CustomToolTip diff -r a506e4de8f84 -r dff0a4e40808 controls/CustomToolTip.py --- a/controls/CustomToolTip.py Thu May 23 22:22:53 2013 +0200 +++ b/controls/CustomToolTip.py Fri May 24 11:17:35 2013 +0200 @@ -174,10 +174,7 @@ dc.Clear() # Set DC drawing style - pen = wx.Pen(wx.BLACK) - pen.SetJoin(wx.JOIN_MITER) - pen.SetCap(wx.CAP_PROJECTING) - dc.SetPen(pen) + dc.SetPen(wx.BLACK_PEN) dc.SetBrush(wx.Brush(wx.Colour(255, 238, 170))) dc.SetFont(self.Font) diff -r a506e4de8f84 -r dff0a4e40808 controls/__init__.py --- a/controls/__init__.py Thu May 23 22:22:53 2013 +0200 +++ b/controls/__init__.py Fri May 24 11:17:35 2013 +0200 @@ -40,3 +40,4 @@ from FolderTree import FolderTree from LogViewer import LogViewer from CustomStyledTextCtrl import CustomStyledTextCtrl +from CustomToolTip import CustomToolTip